重新生成Entity文件
This commit is contained in:
154
WarehouseMgr/Tnb.WarehouseMgr.Entities/Entity/WmsSetsortingD.cs
Normal file
154
WarehouseMgr/Tnb.WarehouseMgr.Entities/Entity/WmsSetsortingD.cs
Normal file
@@ -0,0 +1,154 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using JNPF.Common.Security;
|
||||
using SqlSugar;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities
|
||||
{
|
||||
///<summary>
|
||||
///齐套分拣明细表
|
||||
///</summary>
|
||||
[SugarTable("wms_setsorting_d")]
|
||||
public partial class WmsSetsortingD
|
||||
{
|
||||
public WmsSetsortingD(){
|
||||
|
||||
|
||||
}
|
||||
/// <summary>
|
||||
/// Desc:Id
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey=true)]
|
||||
public string id {get;set;} = SnowflakeIdHelper.NextId();
|
||||
|
||||
/// <summary>
|
||||
/// Desc:所属组织ID
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string org_id {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:出库单ID
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string bill_id {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:行号
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public int bill_line {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:物品ID
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string material_id {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:物品代码
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string material_code {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 string unit_code {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:批次
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? code_batch {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:出库需求数量
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public decimal pr_qty {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:实际出库数量
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public decimal qty {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:发料仓库
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string warehouse_id {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:备注
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? remark {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:扩展字段
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? extras {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:时间戳
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string time_stamp {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:创建用户
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string create_id {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:创建时间
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public DateTime create_time {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:修改用户
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? modify_id {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:修改时间
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public DateTime? modify_time {get;set;}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user