Fixiaobai
2023-08-14 b081758449c9d491adf1c70a030461b24dc163fe
cnas-server/src/main/java/com/yuanchu/limslaboratory/pojo/Dto/CnasSatisfactionSurveyPageDto.java
ÎļþÃû´Ó cnas-server/src/main/java/com/yuanchu/limslaboratory/pojo/Dto/CnasSatisfactionSurveyDto.java ÐÞ¸Ä
@@ -8,7 +8,7 @@
import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable;
import java.util.Date;
import java.sql.Date;
/**
 * @Author å¼ å®¾
@@ -17,7 +17,7 @@
@Data
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="CnasSatisfactionSurveyDto", description="")
public class CnasSatisfactionSurveyDto implements Serializable {
public class CnasSatisfactionSurveyPageDto implements Serializable {
    private static final long serialVersionUID = 1L;
    @ApiModelProperty(value = "当前页", example = "1", required = true)
@@ -27,13 +27,9 @@
    private Long pageNum;
    @ApiModelProperty(value = "调查日期", example = "2020-01-02", required = true)
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date surveyDate;
    @ApiModelProperty(value = "录入日期", example = "2025-06-08", required = true)
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date entryDate;
}