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