66 lines
1.2 KiB
Java
66 lines
1.2 KiB
Java
|
|
package com.gear.mat.domain;
|
|||
|
|
|
|||
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|||
|
|
import lombok.Data;
|
|||
|
|
import lombok.EqualsAndHashCode;
|
|||
|
|
import java.io.Serializable;
|
|||
|
|
import java.util.Date;
|
|||
|
|
import java.math.BigDecimal;
|
|||
|
|
|
|||
|
|
import java.math.BigDecimal;
|
|||
|
|
import com.gear.common.core.domain.BaseEntity;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 配料配件基础信息对象 mat_material
|
|||
|
|
*
|
|||
|
|
* @author ruoyi
|
|||
|
|
* @date 2026-01-30
|
|||
|
|
*/
|
|||
|
|
@Data
|
|||
|
|
@EqualsAndHashCode(callSuper = true)
|
|||
|
|
@TableName("mat_material")
|
|||
|
|
public class MatMaterial extends BaseEntity {
|
|||
|
|
|
|||
|
|
private static final long serialVersionUID=1L;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 配料ID 主键
|
|||
|
|
*/
|
|||
|
|
@TableId(value = "material_id")
|
|||
|
|
private Long materialId;
|
|||
|
|
/**
|
|||
|
|
* 配料名称
|
|||
|
|
*/
|
|||
|
|
private String materialName;
|
|||
|
|
/**
|
|||
|
|
* 配料规格
|
|||
|
|
*/
|
|||
|
|
private String spec;
|
|||
|
|
/**
|
|||
|
|
* 配料型号
|
|||
|
|
*/
|
|||
|
|
private String model;
|
|||
|
|
/**
|
|||
|
|
* 厂家
|
|||
|
|
*/
|
|||
|
|
private String factory;
|
|||
|
|
/**
|
|||
|
|
* 计量单位 个/公斤/米等
|
|||
|
|
*/
|
|||
|
|
private String unit;
|
|||
|
|
/**
|
|||
|
|
* 现存库存(已入库) 不能为负
|
|||
|
|
*/
|
|||
|
|
private BigDecimal currentStock;
|
|||
|
|
/**
|
|||
|
|
* 删除标志(0=正常,1=已删除)
|
|||
|
|
*/
|
|||
|
|
@TableLogic
|
|||
|
|
private Integer delFlag;
|
|||
|
|
/**
|
|||
|
|
* 备注
|
|||
|
|
*/
|
|||
|
|
private String remark;
|
|||
|
|
|
|||
|
|
}
|