64 lines
1.1 KiB
Java
64 lines
1.1 KiB
Java
package com.ruoyi.system.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
|
/**
|
|
* 电器物料管理对象 ele_materials
|
|
*
|
|
* @author tzy
|
|
* @date 2024-12-28
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = true)
|
|
@TableName("ele_materials")
|
|
public class EleMaterials extends BaseEntity {
|
|
|
|
private static final long serialVersionUID=1L;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
@TableId(value = "ID",type = IdType.AUTO)
|
|
private Long id;
|
|
/**
|
|
* 序号
|
|
*/
|
|
private Long serialNumber;
|
|
/**
|
|
* 物料编码
|
|
*/
|
|
private String materialCode;
|
|
/**
|
|
* 物料名称
|
|
*/
|
|
private String materialName;
|
|
/**
|
|
* 型号
|
|
*/
|
|
private String model;
|
|
/**
|
|
* 材质
|
|
*/
|
|
private String materialType;
|
|
/**
|
|
* 单位
|
|
*/
|
|
private String unit;
|
|
/**
|
|
* 品牌
|
|
*/
|
|
private String brand;
|
|
/**
|
|
* 备注
|
|
*/
|
|
private String remarks;
|
|
/**
|
|
* 物料值
|
|
*/
|
|
private String materialValue;
|
|
}
|