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