物料增加信息 工艺路线弹窗增加过滤
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
using SqlSugar;
|
||||
using Tnb.Common.Contracts;
|
||||
|
||||
namespace Tnb.BasicData.Entities
|
||||
{
|
||||
///<summary>
|
||||
///物料入场规格
|
||||
///</summary>
|
||||
[SugarTable("bas_material_into_factory_specifications")]
|
||||
public class BasMaterialIntoFactorySpecifications : BaseEntity<string>
|
||||
{
|
||||
public BasMaterialIntoFactorySpecifications(){
|
||||
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:物料id
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string material_id {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:单位id
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string unit_id {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:数量
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public decimal num {get;set;}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user