| New file |
| | |
| | | package com.example.erp.entity.mm; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.example.erp.entity.sd.*; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | public class FinishedGoodsInventory { |
| | | @TableId(type = IdType.AUTO) |
| | | |
| | | private Long id; |
| | | private Order order; |
| | | private OrderDetail orderDetail; |
| | | private Integer inventory ; |
| | | private Double actualSignalArea; |
| | | private Double area; |
| | | private Integer quantityAvailable; |
| | | private String warehouseNumber; |
| | | private String storageRegion; |
| | | private Integer status; |
| | | private LocalDate enterStorageTime; |
| | | private String remark; |
| | | private LocalDate updateTime; |
| | | private LocalDate endTime; |
| | | |
| | | } |