using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace ZR.Model.MES.wms
{
///
/// 物料记录表
///
[SugarTable("wm_material")]
public class WmMaterial
{
///
/// 主键G
///
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true )]
public string Id { get; set; }
///
/// 物料号(零件号)
///
[SugarColumn(ColumnName="partnumber")]
public string Partnumber { get; set; }
///
/// U8库存编码
///
[SugarColumn(ColumnName="u8_inventory_code")]
public string U8InventoryCode { get; set; }
///
/// 毛坯号
///
[SugarColumn(ColumnName="blank_num" )]
public string BlankNum { get; set; }
///
/// 单位
///
[SugarColumn(ColumnName="unit" )]
public string Unit { get; set; }
///
/// 产品描述(产品名称)
///
[SugarColumn(ColumnName="product_name" )]
public string ProductName { get; set; }
///
/// 产品颜色
///
[SugarColumn(ColumnName="color" )]
public string Color { get; set; }
///
/// 规格(左右脚)
///
[SugarColumn(ColumnName="specification" )]
public string Specification { get; set; }
///
/// 显示描述(产品描述+颜色+规格)
///
[SugarColumn(ColumnName="description" )]
public string Description { get; set; }
///
/// 版本号
///
[SugarColumn(ColumnName="version" )]
public string Version { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName="remarks" )]
public string Remarks { get; set; }
///
/// 排序(特殊排序)
///
[SugarColumn(ColumnName="sort" )]
public int? Sort { get; set; }
///
/// 便捷搜索字段1
///
[SugarColumn(ColumnName="search1" )]
public string Search1 { get; set; }
///
/// 便捷搜索字段2
///
[SugarColumn(ColumnName="search2" )]
public string Search2 { get; set; }
///
/// 状态(0-不可见 1-可见)
///
[SugarColumn(ColumnName="status" )]
public int? Status { get; set; }
///
/// 创建人
///
[SugarColumn(ColumnName="CREATED_BY" )]
public string CreatedBy { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName="CREATED_TIME" )]
public DateTime? CreatedTime { get; set; }
///
/// 更新人
///
[SugarColumn(ColumnName="UPDATED_BY" )]
public string UpdatedBy { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnName="UPDATED_TIME" )]
public DateTime? UpdatedTime { get; set; }
}
}