廖井涛
5 天以前 cf4b24b7757bc76bb9c01fe936140073cb150711
north-glass-erp/src/main/java/com/example/erp/entity/mm/MaterialInventory.java
New file
@@ -0,0 +1,41 @@
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;
import java.time.LocalDate;
@Data
public class MaterialInventory {
    @TableId(type = IdType.AUTO)
    private Long id;
    private String inventoryOrganization;
    private Long materialCode;
    private String materialName;
    private String producer;
    private String stockId;
    private Double width;
    private Double height;
    private Double thickness;
    private String unit;
    private Integer inventoryQuantity;
    private Integer availableQuantity;
    private Integer safetyStock;
    private Integer planQuantity;
    private Double totalArea;
    private Double singlePieceArea;
    private LocalDate dateOfManufacture;
    private String qualityGuaranteePeriod;
    private String inventoryArea;
    private Integer deadStock;
    private String remarks;
    private LocalDate createTime;
    @TableField(select = false,exist = false)
    private String json;
}