ÎļþÃû´Ó cnas-server/src/main/java/com/yuanchu/limslaboratory/pojo/Dto/CnasSatisfactionSurveyDto.java ÐÞ¸Ä |
| | |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.sql.Date; |
| | | |
| | | /** |
| | | * @Author å¼ å®¾ |
| | |
| | | @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) |
| | |
| | | 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; |
| | | |
| | | } |