重新生成Entity文件
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using JNPF.Common.Security;
|
||||
using SqlSugar;
|
||||
using Tnb.Common.Contracts;
|
||||
|
||||
namespace Tnb.BasicData.Entities
|
||||
{
|
||||
@@ -7,33 +10,40 @@ namespace Tnb.BasicData.Entities
|
||||
///物料入场规格
|
||||
///</summary>
|
||||
[SugarTable("bas_material_into_factory_specifications")]
|
||||
public class BasMaterialIntoFactorySpecifications : BaseEntity<string>
|
||||
public partial class BasMaterialIntoFactorySpecifications
|
||||
{
|
||||
public 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;}
|
||||
/// <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;}
|
||||
/// <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;}
|
||||
/// <summary>
|
||||
/// Desc:数量
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public decimal num {get;set;}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user