using System; using System.Linq; using System.Text; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities { /// ///库内转移 /// [SugarTable("wms_transfer")] public partial class WmsTransfer { public WmsTransfer(){ } /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string id {get;set;} = SnowflakeIdHelper.NextId(); /// /// Desc:租户ID /// Default:NULL::character varying /// Nullable:True /// public string? tenant_id {get;set;} /// /// Desc:所属组织ID /// Default:NULL::character varying /// Nullable:True /// public string? org_id {get;set;} /// /// Desc:起始库位ID /// Default: /// Nullable:False /// public string startlocation_id {get;set;} = string.Empty; /// /// Desc:目标库位ID /// Default: /// Nullable:False /// public string endlocation_id {get;set;} = string.Empty; /// /// Desc:单号 /// Default: /// Nullable:False /// public string bill_code {get;set;} = string.Empty; /// /// Desc:单据状态 /// Default: /// Nullable:False /// public string status {get;set;} = string.Empty; /// /// Desc:业务类型: /// Default: /// Nullable:False /// public string biz_type {get;set;} = string.Empty; /// /// Desc:载具ID /// Default: /// Nullable:False /// public string carry_id {get;set;} = string.Empty; /// /// Desc:载具编号 /// Default: /// Nullable:False /// public string carry_code {get;set;} = string.Empty; /// /// Desc:所属仓库 /// Default: /// Nullable:False /// public string warehouse_id {get;set;} = string.Empty; /// /// 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;} } }