package org.springblade.modules.eCallEventTwo.dto;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.springblade.modules.eCallEventTwo.entity.EcOrderDone;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.time.LocalDateTime;
|
|
/**
|
* 办结单对象 ec_order_done
|
*
|
* @author ${context.author}
|
* @date 2024-05-28 14:42:26
|
*/
|
@ApiModel(value = "EcOrderDoneDTO对象")
|
@Data
|
public class EcOrderDoneDTO extends EcOrderDone {
|
|
@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;
|
|
@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;
|
|
@ApiModelProperty(value = "调度单位", example = "")
|
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;
|
}
|