using System; using System.Linq; using System.Text; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities { /// ///载具台账主表 /// [SugarTable("wms_carry_h")] public partial class WmsCarryH { public WmsCarryH(){ } /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string id {get;set;} = SnowflakeIdHelper.NextId(); /// /// Desc:租户ID /// Default: /// Nullable:True /// public string? tenant_id {get;set;} /// /// Desc:所属组织ID /// Default: /// Nullable:True /// public string? org_id {get;set;} /// /// Desc:载具编号 /// Default: /// Nullable:False /// public string carry_code {get;set;} = string.Empty; /// /// Desc:载具名称 /// Default: /// Nullable:False /// public string carry_name {get;set;} = string.Empty; /// /// Desc:状态 /// Default: /// Nullable:False /// public int status {get;set;} /// /// Desc:载具状态 /// Default: /// Nullable:False /// public string carry_status {get;set;} = string.Empty; /// /// Desc:载具分类ID /// Default: /// Nullable:False /// public string carrystd_id {get;set;} = string.Empty; /// /// Desc:载具库位ID /// Default:NULL::character varying /// Nullable:True /// public string? location_id {get;set;} /// /// Desc:载具库位编号 /// Default:NULL::character varying /// Nullable:True /// public string? location_code {get;set;} /// /// Desc:是否锁定 /// Default: /// Nullable:False /// public int is_lock {get;set;} /// /// Desc:出库类型 /// Default: /// Nullable:False /// public string out_status {get;set;} = string.Empty; /// /// Desc:是否检验 /// Default: /// Nullable:False /// public int is_check {get;set;} /// /// Desc:来源单据ID /// Default:NULL::character varying /// Nullable:True /// public string? source_id {get;set;} /// /// Desc:来源单据代码 /// Default:NULL::character varying /// Nullable:True /// public string? source_code {get;set;} /// /// Desc:创建用户 /// Default: /// Nullable:False /// public string create_id {get;set;} = string.Empty; /// /// Desc:创建时间 /// Default: /// Nullable:False /// public DateTime create_time {get;set;} /// /// Desc:最后修改人员ID /// Default:NULL::character varying /// Nullable:True /// public string? modify_id {get;set;} /// /// Desc:最后修改时间 /// Default: /// Nullable:True /// public DateTime? modify_time {get;set;} /// /// Desc:扩展字段 /// Default: /// Nullable:True /// public string? extras {get;set;} /// /// Desc:时间戳(用于并发控制) /// Default: /// Nullable:True /// public DateTime? timestamp {get;set;} } }