39 lines
873 B
C#
39 lines
873 B
C#
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;}
|
|
|
|
}
|
|
} |