|
@@ -1,6 +1,7 @@
|
|
|
package com.railway.business.bi.domain.vo;
|
|
package com.railway.business.bi.domain.vo;
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
@@ -33,21 +34,25 @@ public class TestPlanKgQuery implements Serializable {
|
|
|
private String substationName;
|
|
private String substationName;
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "计划时间开始")
|
|
@ApiModelProperty(value = "计划时间开始")
|
|
|
|
|
+ @JsonProperty(value = "testPlanDate_Start")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
private LocalDate testPlanDateStart;
|
|
private LocalDate testPlanDateStart;
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "计划时间结束")
|
|
@ApiModelProperty(value = "计划时间结束")
|
|
|
|
|
+ @JsonProperty(value = "testPlanDate_End")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
private LocalDate testPlanDateEnd;
|
|
private LocalDate testPlanDateEnd;
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "实际时间开始")
|
|
@ApiModelProperty(value = "实际时间开始")
|
|
|
|
|
+ @JsonProperty(value = "completionDate_Start")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
private LocalDate completionDateStart;
|
|
private LocalDate completionDateStart;
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "实际时间结束")
|
|
@ApiModelProperty(value = "实际时间结束")
|
|
|
|
|
+ @JsonProperty(value = "completionDate_End")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
private LocalDate completionDateEnd;
|
|
private LocalDate completionDateEnd;
|