| | |
| | | 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.Order; |
| | | import com.example.erp.entity.sd.OrderDetail; |
| | |
| | | private Double money; |
| | | private Double computeArea; |
| | | |
| | | /*库存数量*/ |
| | | @TableField(select = false,exist = false) |
| | | private Integer quantityAvailable; |
| | | |
| | | /*平方毫米*/ |
| | | @TableField(select = false,exist = false) |
| | | private Double squareMillimeter; |
| | | |
| | | /*撤销数量*/ |
| | | @TableField(select = false,exist = false) |
| | | private Integer cancelAvailable; |
| | | |
| | | private OrderDetail orderDetail; |
| | | |
| | | private Order order; |