chenlu
1 天以前 43322d13c1876b1705f8ba1eb2ef32e7a433cacc
north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGoodsInventory.java
New file
@@ -0,0 +1,40 @@
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.*;
import lombok.Data;
import java.time.LocalDate;
@Data
public class FinishedGoodsInventory {
    @TableId(type = IdType.AUTO)
    private Long id;
    private String orderId;
    private Integer orderNumber;
    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;
    private String processId;
    private String boxNo;
    private Double computeArea;
    private Double computeGrossArea;
    @TableField(select = false,exist = false)
    private Order order;
    @TableField(select = false,exist = false)
    private OrderDetail orderDetail;
    @TableField(select = false,exist = false)
    private Double weight;
}