| | |
| | | @ApiModelProperty(value = "开始时间", example = "") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime startTime; |
| | | private String startTime; |
| | | |
| | | @ApiModelProperty(value = "结束时间", example = "") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime endTime; |
| | | private String endTime; |
| | | |
| | | @ApiModelProperty(value = "调度单位", example = "") |
| | | private String objectOrgCode; |
| | | private String subjectOrgCode; |
| | | |
| | | @ApiModelProperty(value = "调度单位名称", example = "") |
| | | private String subjectOrgName; |
| | | |
| | | @ApiModelProperty(value = "主办单位", example = "") |
| | | private String sinkOrgCode; |
| | | |
| | | @ApiModelProperty(value = "主办单位名称", example = "") |
| | | private String sinkOrgName; |
| | | |
| | | @ApiModelProperty(value = "是否主办(Y/N)", example = "") |
| | | private String tagMain; |
| | | |
| | | @ApiModelProperty(value = "是否主办(1/2)", example = "") |
| | | private Integer mainFlag; |
| | | } |