| | |
| | | package com.example.erp.entity.pp; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.example.erp.entity.sd.Order; |
| | | import com.example.erp.entity.sd.OrderDetail; |
| | | import com.example.erp.entity.sd.OrderGlassDetail; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | |
| | | //创建时间 |
| | | private LocalDate createTime; |
| | | |
| | | private Integer pendingProductionQuantity; |
| | | |
| | | private Double pendingProductionArea; |
| | | |
| | | private Integer productionScheduledQuantity; |
| | | |
| | | private Double productionScheduledArea; |
| | | |
| | | private String reviewer; |
| | | |
| | | //外键订单表 |
| | | @TableField(select = false,exist= false) |
| | | private Order order; |
| | | //外键订单明细表 |
| | | @TableField(select = false,exist= false) |
| | | private OrderDetail orderDetail; |
| | | //外键订单明细表 |
| | | @TableField(select = false,exist= false) |
| | | private OrderGlassDetail orderGlassDetail; |
| | | } |