| | |
| | | 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 lombok.Data; |
| | | |
| | |
| | | private Integer inventoryQuantity; |
| | | private Integer availableQuantity; |
| | | private Integer safetyStock; |
| | | private Integer planQuantity; |
| | | private Double totalArea; |
| | | private Double singlePieceArea; |
| | | private LocalDate dateOfManufacture; |
| | |
| | | private Integer deadStock; |
| | | private String remarks; |
| | | private LocalDate createTime; |
| | | @TableField(select = false,exist = false) |
| | | private String json; |
| | | |
| | | |
| | | |