| | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.example.erp.entity.sd.Order; |
| | | import com.example.erp.entity.sd.OrderDetail; |
| | | import com.example.erp.entity.sd.OrderGlassDetail; |
| | |
| | | |
| | | import java.time.LocalDate; |
| | | @Data |
| | | @TableName("pp.`flow_card`") |
| | | public class FlowCard { |
| | | @TableId(type = IdType.AUTO) |
| | | //自增id |
| | |
| | | private LocalDate updateTime; |
| | | |
| | | //查询用 |
| | | //流程卡面积 |
| | | @TableField(select = false,exist = false) |
| | | private Double computeGrossArea; |
| | | //标签打印数量 |
| | | @TableField(select = false,exist = false) |
| | | private Integer printQuantity; |
| | |
| | | //版图ID |
| | | @TableField(select = false,exist = false) |
| | | private String stockId; |
| | | //小片序号 |
| | | @TableField(select = false,exist = false) |
| | | private Integer polysId; |
| | | //小片数量 |
| | | @TableField(select = false,exist = false) |
| | | private String glassCount; |
| | | //补片状态 |
| | | @TableField(select = false,exist = false) |
| | | private Integer patchState; |
| | | //批次 |
| | | @TableField(select = false,exist = false) |
| | | private String batch; |
| | | //产品名称 |
| | | @TableField(select = false,exist = false) |
| | | private String productName; |
| | | |
| | | //外键订单表 |
| | | @TableField(select = false,exist= false) |
| | |
| | | |
| | | @TableField(select = false,exist= false) |
| | | private Product product; |
| | | |
| | | |
| | | } |