package com.example.erp.entity.mm;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
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 Double totalArea;
|
private Double singlePieceArea;
|
private LocalDate dateOfManufacture;
|
private String qualityGuaranteePeriod;
|
private String inventoryArea;
|
private Integer deadStock;
|
private String remarks;
|
private LocalDate createTime;
|
|
|
|
}
|