重新生成Entity文件
This commit is contained in:
168
WarehouseMgr/Tnb.WarehouseMgr.Entities/Entity/WmsCarryH.cs
Normal file
168
WarehouseMgr/Tnb.WarehouseMgr.Entities/Entity/WmsCarryH.cs
Normal file
@@ -0,0 +1,168 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using JNPF.Common.Security;
|
||||
using SqlSugar;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities
|
||||
{
|
||||
///<summary>
|
||||
///载具台账主表
|
||||
///</summary>
|
||||
[SugarTable("wms_carry_h")]
|
||||
public partial class WmsCarryH
|
||||
{
|
||||
public WmsCarryH(){
|
||||
|
||||
|
||||
}
|
||||
/// <summary>
|
||||
/// Desc:主键
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey=true)]
|
||||
public string id {get;set;} = SnowflakeIdHelper.NextId();
|
||||
|
||||
/// <summary>
|
||||
/// Desc:租户ID
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? tenant_id {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:所属组织ID
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? org_id {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:载具编号
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string carry_code {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:载具名称
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string carry_name {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:状态
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public int status {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:载具状态
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string carry_status {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:载具分类ID
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string carrystd_id {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:载具库位ID
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? location_id {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:载具库位编号
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? location_code {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:是否锁定
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public int is_lock {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:出库类型
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string out_status {get;set;} = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Desc:是否检验
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public int is_check {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:来源单据ID
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? source_id {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:来源单据代码
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? source_code {get;set;}
|
||||
|
||||
/// <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:最后修改人员ID
|
||||
/// 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;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:扩展字段
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string? extras {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:时间戳(用于并发控制)
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public DateTime? timestamp {get;set;}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user