New file |
| | |
| | | package com.example.erp.entity.pp; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | 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.OrderGlassDetail; |
| | | import com.example.erp.entity.sd.Product; |
| | | import lombok.Data; |
| | | |
| | | |
| | | |
| | | @Data |
| | | public class DamageDetails { |
| | | @TableId(type = IdType.AUTO) |
| | | //自增ID |
| | | private Integer id; |
| | | //报工编号 |
| | | private String reportingWorkId; |
| | | //流程卡号 |
| | | private String processId; |
| | | //产品序号 |
| | | private String orderNumber; |
| | | //工艺确认序号 |
| | | private String technologyNumber; |
| | | //次破数量 |
| | | private Integer breakageQuantity; |
| | | //次破原因 |
| | | private String breakageReason; |
| | | //类型 |
| | | private String breakageType; |
| | | //可利用 |
| | | private Boolean available; |
| | | //退回工序 |
| | | private String returnProcess; |
| | | //责任工序 |
| | | private String responsibleProcess; |
| | | //责任人员 |
| | | private String responsiblePersonnel; |
| | | //责任班组 |
| | | private String responsibleTeam; |
| | | //责任设备 |
| | | private String responsibleEquipment; |
| | | //质检员 |
| | | private String qualityInspector; |
| | | //补片状态 |
| | | private Integer patchStatus; |
| | | //质检状态 |
| | | private Integer qualityInsStatus; |
| | | //数量 |
| | | private Integer quantity; |
| | | |
| | | @TableField(select = false,exist = false) |
| | | private String area; |
| | | |
| | | @TableField(select = false,exist = false) |
| | | private ReportingWork reportingWork; |
| | | |
| | | @TableField(select = false,exist = false) |
| | | private Order order; |
| | | |
| | | @TableField(select = false,exist = false) |
| | | private OrderGlassDetail orderGlassDetail; |
| | | } |