廖井涛
2024-01-23 1de7198e488a0e4e82c67b36b498db1c4aef73e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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;
 
}