| | |
| | | package com.example.erp.entity.mm; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.example.erp.entity.sd.*; |
| | | import lombok.Data; |
| | |
| | | private String remark; |
| | | private LocalDate updateTime; |
| | | private LocalDate endTime; |
| | | |
| | | private String processId; |
| | | private String boxNo; |
| | | private Double computeArea; |
| | | private Double computeGrossArea; |
| | | @TableField(select = false,exist = false) |
| | | private Order order; |
| | | @TableField(select = false,exist = false) |
| | | private OrderDetail orderDetail; |
| | | @TableField(select = false,exist = false) |
| | | private Double weight; |
| | | |
| | | } |