| | |
| | | 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; |
| | | |
| | | |
| | |
| | | private Integer id; |
| | | //报工编号 |
| | | private String reportingWorkId; |
| | | //流程卡号 |
| | | private String processId; |
| | | //产品序号 |
| | | private String orderNumber; |
| | | //工艺确认序号 |
| | |
| | | //类型 |
| | | private String breakageType; |
| | | //可利用 |
| | | private Integer available; |
| | | private Boolean available; |
| | | //退回工序 |
| | | private String returnProcess; |
| | | //责任工序 |
| | |
| | | private Integer patchStatus; |
| | | //质检状态 |
| | | private Integer qualityInsStatus; |
| | | //数量 |
| | | private Integer quantity; |
| | | |
| | | @TableField(select = false,exist = false) |
| | | private String code; |
| | | |
| | | @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; |
| | | } |