using System; using System.Linq; using System.Text; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities { /// ///点位管理明细表 /// [SugarTable("wms_point_d")] public partial class WmsPointD { public WmsPointD(){ } /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string id {get;set;} = SnowflakeIdHelper.NextId(); /// /// Desc:所属组织ID /// Default:NULL::character varying /// Nullable:True /// public string? org_id {get;set;} /// /// Desc:点位ID /// Default: /// Nullable:False /// public string point_id {get;set;} = string.Empty; /// /// Desc:动作属性 /// Default: /// Nullable:False /// public string action_type {get;set;} = string.Empty; /// /// Desc:动作时间 /// Default: /// Nullable:False /// public decimal action_time {get;set;} /// /// Desc:目标点位ID /// Default: /// Nullable:False /// public string endpoint_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;} } }