|
@@ -1,6 +1,7 @@
|
|
|
package org.jeecg.modules.DefectiveProduct.entity;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
+import java.time.LocalDate;
|
|
|
import java.util.Date;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
@@ -47,10 +48,12 @@ public class DefectiveProduct implements Serializable {
|
|
|
private String tool;
|
|
|
/**po*/
|
|
|
@Excel(name = "po", width = 15)
|
|
|
- private String po;
|
|
|
+ private Integer po;
|
|
|
/**due_date*/
|
|
|
- @Excel(name = "due_date", width = 15)
|
|
|
- private String dueDate;
|
|
|
+ @Excel(name = "due_date", width = 15, format = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd")
|
|
|
+ private LocalDate dueDate;
|
|
|
/**comment1*/
|
|
|
@Excel(name = "comment1", width = 15)
|
|
|
private String comment1;
|