修改ebom相关名称
This commit is contained in:
121
BasicData/Tnb.BasicData.Entitys/Entity/BasEbomD.cs
Normal file
121
BasicData/Tnb.BasicData.Entitys/Entity/BasEbomD.cs
Normal file
@@ -0,0 +1,121 @@
|
||||
using SqlSugar;
|
||||
using Tnb.Common.Contracts;
|
||||
|
||||
namespace Tnb.BasicData.Entitys.Entity
|
||||
{
|
||||
///<summary>
|
||||
///物料清单子表
|
||||
///</summary>
|
||||
[SugarTable("bas_ebom_d")]
|
||||
public class BasEbomD : BaseEntity<string>
|
||||
{
|
||||
public BasEbomD(){
|
||||
|
||||
|
||||
}
|
||||
/// <summary>
|
||||
/// Desc:主键
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey=true,ColumnName="id")]
|
||||
public string Id {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:扩展字段
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="extras")]
|
||||
public string Extras {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:父件物料ID
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="ebom_id")]
|
||||
public string EbomId {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:物料编号/名称
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="material_id")]
|
||||
public string MaterialId {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:规格描述
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="descrip")]
|
||||
public string Descrip {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:单位
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="unit")]
|
||||
public string Unit {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:数量
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="quantity")]
|
||||
public string Quantity {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:损耗率
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="loss_rate")]
|
||||
public string LossRate {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:替代物料
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="substitute_material")]
|
||||
public string SubstituteMaterial {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:投料管控
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="feeding_control")]
|
||||
public string FeedingControl {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:需要称量
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="require_weight")]
|
||||
public string RequireWeight {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:版本号
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="version")]
|
||||
public string Version {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:工艺路线
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName="routing")]
|
||||
public string Routing {get;set;}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user