|
@@ -5,6 +5,7 @@ import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import java.time.LocalDateTime;
|
|
|
import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import lombok.Data;
|
|
@@ -50,18 +51,18 @@ public class DuckEggTextureInfo implements Serializable {
|
|
|
* 产蛋日期
|
|
|
*/
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
|
|
|
- private LocalDateTime layEggsTime;
|
|
|
+ private Date layEggsTime;
|
|
|
|
|
|
/**
|
|
|
* 测定日期
|
|
|
*/
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
|
|
|
- private LocalDateTime determineTime;
|
|
|
+ private Date determineTime;
|
|
|
|
|
|
/**
|
|
|
* 鸭蛋种类 1受精蛋 2肉浮蛋
|
|
|
*/
|
|
|
- private String eggType;
|
|
|
+ private Integer eggType;
|
|
|
/**
|
|
|
* 鸭蛋编号
|
|
|
*/
|