| | |
| | | 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.mm.FinishedGoodsInventory; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Data; |
| | |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @TableName("sd.`order_detail`") |
| | | public class OrderDetail { |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | |
| | | private Integer differentSize;//用于标签打印时 明细是否显示 |
| | | //private Product product; |
| | | |
| | | @TableField(exist= false,select = false) |
| | | private String processId; |
| | | @TableField(exist= false,select = false) |
| | | private String baiscQuantity; |
| | | @TableField(exist= false,select = false) |
| | | private Integer landingSequence; |
| | | @TableField(exist= false,select = false) |
| | | private Double thickness; |
| | | |
| | | } |