|
|
@ -1,5 +1,6 @@ |
|
|
|
package com.kms.yxgh.df.dto; |
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import io.swagger.annotations.ApiModel; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
@ -21,8 +22,10 @@ public class DfSubPlanSearchDto { |
|
|
|
private String user; |
|
|
|
@ApiModelProperty("路线类型") |
|
|
|
private String lineType; |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@ApiModelProperty(value = "开始时间") |
|
|
|
private Date startTime; |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@ApiModelProperty(value = "结束时间") |
|
|
|
private Date endTime; |
|
|
|
|
|
|
|