using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.Core._02Entity { /// /// /// [SugarTable("BASE_POINT")] public partial class BASE_POINT { public BASE_POINT() { } /// /// Desc:点位编码 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string F_no { get; set; } /// /// Desc:点位描述 /// Default: /// Nullable:False /// public string F_name { get; set; } /// /// Desc:点位类型 /// Default: /// Nullable:False /// public int F_type { get; set; } /// /// Desc:点位状态 /// Default: /// Nullable:False /// public int F_status { get; set; } /// /// Desc:创建用户编号 /// Default: /// Nullable:False /// public string F_addUserNo { get; set; } /// /// Desc:创建时间 /// Default: /// Nullable:False /// public DateTime F_addTime { get; set; } /// /// Desc:编辑用户编号 /// Default: /// Nullable:False /// public string F_editUserNo { get; set; } /// /// Desc:编辑时间 /// Default: /// Nullable:False /// public DateTime? F_editTime { get; set; } /// /// Desc:备注 /// Default: /// Nullable:False /// public string F_memo { get; set; } /// /// Desc:是否删除 /// Default: /// Nullable:False /// public int F_isDelete { get; set; } /// /// Desc:缓存点位 /// Default: /// Nullable:False /// public string F_cachePoint { get; set; } /// /// 排序号 /// public int F_sort { get; set; } /// /// agv点位 /// public string F_agv { get; set; } } }