50 lines
1.2 KiB
C#
50 lines
1.2 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using JNPF.Common.Security;
|
|
using SqlSugar;
|
|
|
|
namespace Tnb.BasicData.Entities
|
|
{
|
|
///<summary>
|
|
///物料入场规格
|
|
///</summary>
|
|
[SugarTable("bas_material_into_factory_specifications")]
|
|
public partial class BasMaterialIntoFactorySpecifications
|
|
{
|
|
public BasMaterialIntoFactorySpecifications(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:编号
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true)]
|
|
public string id {get;set;} = SnowflakeIdHelper.NextId();
|
|
|
|
/// <summary>
|
|
/// Desc:物料id
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string material_id {get;set;} = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Desc:单位id
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string unit_id {get;set;} = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Desc:数量
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public decimal num {get;set;}
|
|
|
|
}
|
|
}
|