标准预警查询完全体
This commit is contained in:
+42
-4
@@ -1,5 +1,6 @@
|
|||||||
package com.adc.da.slrs.sarStandWarning.entity;
|
package com.adc.da.slrs.sarStandWarning.entity;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.experimental.Accessors;
|
import lombok.experimental.Accessors;
|
||||||
import org.springframework.format.annotation.DateTimeFormat;
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
@@ -10,15 +11,18 @@ import java.util.Date;
|
|||||||
@Accessors(chain = true)
|
@Accessors(chain = true)
|
||||||
public class StandWarningEO extends EarlyWarningEO {
|
public class StandWarningEO extends EarlyWarningEO {
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
@ApiModelProperty("新车型实施日期")
|
||||||
@DateTimeFormat(pattern = "YYYY-MM-dd")
|
@DateTimeFormat(pattern = "YYYY-MM-dd")
|
||||||
private Date XCXSSRQ;
|
private String XCXSSRQ;
|
||||||
|
|
||||||
|
@ApiModelProperty("在产车实施日期")
|
||||||
@DateTimeFormat(pattern = "YYYY-MM-dd")
|
@DateTimeFormat(pattern = "YYYY-MM-dd")
|
||||||
private Date ZCCSSRQ;
|
private String ZCCSSRQ;
|
||||||
|
|
||||||
|
@ApiModelProperty("实施日期")
|
||||||
@DateTimeFormat(pattern = "YYYY-MM-dd")
|
@DateTimeFormat(pattern = "YYYY-MM-dd")
|
||||||
private Date SSRQ;
|
private String SSRQ;
|
||||||
|
|
||||||
|
|
||||||
private String standNum;
|
private String standNum;
|
||||||
|
|
||||||
@@ -32,4 +36,38 @@ public class StandWarningEO extends EarlyWarningEO {
|
|||||||
|
|
||||||
private Integer pageSize;
|
private Integer pageSize;
|
||||||
|
|
||||||
|
@ApiModelProperty("范围查询新车型实施日期开始")
|
||||||
|
@DateTimeFormat(pattern = "YYYY-MM-dd")
|
||||||
|
private String startXCXSSRQ;
|
||||||
|
|
||||||
|
@ApiModelProperty("范围查询新车型实施日期结束")
|
||||||
|
@DateTimeFormat(pattern = "YYYY-MM-dd")
|
||||||
|
private String endXCXSSRQ;
|
||||||
|
|
||||||
|
@ApiModelProperty("范围查询在产车实施日期开始")
|
||||||
|
@DateTimeFormat(pattern = "YYYY-MM-dd")
|
||||||
|
private String startZCCSSRQ;
|
||||||
|
|
||||||
|
@ApiModelProperty("范围查询在产车实施日期结束")
|
||||||
|
@DateTimeFormat(pattern = "YYYY-MM-dd")
|
||||||
|
private String endZCCSSRQ;
|
||||||
|
|
||||||
|
@ApiModelProperty("范围查询实施日期开始")
|
||||||
|
@DateTimeFormat(pattern = "YYYY-MM-dd")
|
||||||
|
private String startSSRQ;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty("范围查询实施日期结束")
|
||||||
|
@DateTimeFormat(pattern = "YYYY-MM-dd")
|
||||||
|
private String endSSRQ;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty("范围查询发布日期开始")
|
||||||
|
@DateTimeFormat(pattern = "YYYY-MM-dd")
|
||||||
|
private String startPutTime;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty("范围查询发布日期结束")
|
||||||
|
@DateTimeFormat(pattern = "YYYY-MM-dd")
|
||||||
|
private String endPutTime;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user