| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | 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.example.erp.entity.sd.Product; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | public class FlowCard { |
| | | @TableId(type = IdType.AUTO) |
| | | //自增id |
| | |
| | | private String productionId; |
| | | //流程卡号 |
| | | private String processId; |
| | | //落架顺序 |
| | | private Integer landingSequence; |
| | | //序号 |
| | | private Integer orderNumber; |
| | | //工艺确认序号 |
| | | private Integer technologyNumber; |
| | | //分架数量 |
| | | private Integer quantity; |
| | | //已优化数量 |
| | | private Integer optimizeQuantity; |
| | | //排版状态 |
| | | private Integer layoutStatus; |
| | | private String layoutStatus; |
| | | //补片数量 |
| | | private Integer numberPatches; |
| | | //库存数量 |
| | |
| | | private LocalDate updateTime; |
| | | |
| | | //外键订单表 |
| | | // private Order order; |
| | | // //外键订单明细表 |
| | | // private OrderDetail orderDetail; |
| | | // //外键订单工艺审核表 |
| | | // private orderGlassDetail orderGlassDetail; |
| | | private Order order; |
| | | //外键订单明细表 |
| | | private OrderDetail orderDetail; |
| | | //外键订单工艺审核表 |
| | | private OrderGlassDetail orderGlassDetail; |
| | | |
| | | private Product product; |
| | | } |