| | |
| | | import com.example.erp.entity.sd.Order; |
| | | import com.example.erp.entity.sd.OrderDetail; |
| | | import com.example.erp.entity.sd.OrderGlassDetail; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | |
| | | private String breakageReason; |
| | | //类型 |
| | | private String breakageType; |
| | | //宽 |
| | | private Double childWidth; |
| | | //高 |
| | | private Double childHeight; |
| | | //可利用 |
| | | private Integer available; |
| | | //退回工序 |
| | |
| | | //返工审核人 |
| | | private String reviewer; |
| | | //返工时间 |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate reworkTime; |
| | | //返工更新时间 |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate reworkUpdateTime; |
| | | //返工面积 |
| | | // private double reworkArea; |