| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | 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; |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Data |
| | |
| | | //本工序 |
| | | private String thisProcess; |
| | | //上工序数量 |
| | | private Integer thisProcessQuantity; |
| | | private int thisProcessQuantity; |
| | | //本工序完工数量 |
| | | private Integer thisCompletedQuantity; |
| | | private int thisCompletedQuantity; |
| | | //本工序次破数量 |
| | | private Integer thisWornQuantity; |
| | | private int thisWornQuantity; |
| | | //下工序 |
| | | private String nextProcess; |
| | | //班次 |
| | |
| | | //包装方式 |
| | | private String packagingMethod; |
| | | //报工时间 |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime reportingWorkTime; |
| | | //审核时间 |
| | | private LocalDate examineTime; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime examineTime; |
| | | //质检时间 |
| | | private LocalDate qualityInsTime; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime qualityInsTime; |
| | | //建立时间 |
| | | private LocalDate createTime; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime createTime; |
| | | //修改时间 |
| | | private LocalDate updateTime; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime updateTime; |
| | | |
| | | //创建者 |
| | | private String creatorId ; |
| | |
| | | // private ReportingWork reportingWork; |
| | | @TableField(select = false,exist= false) |
| | | private ReportingWorkDetail reportingWorkDetail; |
| | | |
| | | @TableField(select = false,exist= false) |
| | | private OrderGlassDetail orderGlassDetail; |
| | | |
| | | @TableField(select = false,exist= false) |
| | | private DamageDetails damageDetails; |
| | | |
| | | @TableField(select = false,exist= false) |
| | | private OrderDetail orderDetail ; |
| | | |
| | | |
| | | //定义的完工面积 |
| | | @TableField(select = false,exist= false) |
| | | private String completedArea; |
| | | //次破面积 |
| | | @TableField(select = false,exist= false) |
| | | private String wornArea; |
| | | } |