package com.billion.main.bs.domain;
|
|
import lombok.Data;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.billion.common.annotation.Excel;
|
import com.billion.main.common.BaseEntity;
|
|
/**
|
* 物料信息对象 bs_material_info
|
*
|
* @author Billion-Yi
|
* @date 2024-11-26
|
*/
|
@Data
|
public class BsMaterialInfo extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键id */
|
private Long id;
|
|
/** 物料编号 */
|
@Excel(name = "物料编号")
|
private String materialCode;
|
|
/** 物料名称 */
|
@Excel(name = "物料名称")
|
private String materialName;
|
|
/** 视图 */
|
@Excel(name = "视图")
|
private String materialView;
|
|
/** 种类 */
|
@Excel(name = "种类")
|
private String typeZ;
|
|
/** 类型 */
|
@Excel(name = "类型")
|
private String typeL;
|
|
/** 单位 */
|
@Excel(name = "单位")
|
private String unit;
|
|
/** 版本 */
|
@Excel(name = "版本")
|
private String version;
|
|
/** 状态 */
|
@Excel(name = "状态")
|
private String status;
|
|
/** 厂商 */
|
@Excel(name = "厂商")
|
private String supplier;
|
|
/** 数据来源 */
|
@Excel(name = "数据来源")
|
private String dataSource;
|
|
/** 逻辑删除 */
|
private String delFlag;
|
|
/** 备注 */
|
@Excel(name = "备注")
|
private String remark;
|
|
|
}
|