diff --git a/WarehouseMgr/Tnb.WarehouseMgr.Entities/Entity/WmsCheckstockH.part.cs b/WarehouseMgr/Tnb.WarehouseMgr.Entities/Entity/WmsCheckstockH.part.cs index 4d93f685..c039170e 100644 --- a/WarehouseMgr/Tnb.WarehouseMgr.Entities/Entity/WmsCheckstockH.part.cs +++ b/WarehouseMgr/Tnb.WarehouseMgr.Entities/Entity/WmsCheckstockH.part.cs @@ -7,108 +7,11 @@ namespace Tnb.WarehouseMgr.Entities; /// /// 盘点任务主表 /// -[SugarTable("wms_checkstock_h")] public partial class WmsCheckstockH : BaseEntity { - public WmsCheckstockH() - { - id = SnowflakeIdHelper.NextId(); - } /// - /// 所属组织 + /// 仓库名称 /// - public string? org_id { get; set; } - - /// - /// 单号 - /// - public string? checkstock_code { get; set; } - - /// - /// 盘点计划ID - /// - public string? checkplan_id { get; set; } - - /// - /// 仓库ID - /// - public string? warehouse_id { get; set; } - - /// - /// 盘点状态 - /// - public string? status { get; set; } - - /// - /// 盘点类型 - /// - public string? checkstock_type { get; set; } - - /// - /// 盘点种类 - /// - public string? handle_kinds { get; set; } - - /// - /// 盘点开始时间 - /// - public DateTime? check_start_date { get; set; } - - /// - /// 盘点结束时间 - /// - public DateTime? check_end_date { get; set; } - - /// - /// 盘点人ID - /// - public string? checkstock_id { get; set; } - - /// - /// 扩展 - /// - public string? extras { get; set; } - - /// - /// 时间戳 - /// - public DateTime? timestamp { get; set; } - - /// - /// 创建用户 - /// - public string? create_id { get; set; } - - /// - /// 创建时间 - /// - public DateTime? create_time { get; set; } - - /// - /// 修改用户 - /// - public string? modify_id { get; set; } - - /// - /// 修改时间 - /// - public DateTime? modify_time { get; set; } - - /// - /// 流程任务Id - /// - public string? f_flowtaskid { get; set; } - - /// - /// 流程引擎Id - /// - public string? f_flowid { get; set; } - /// - /// 物料ID - /// - public string? material_id { get; set; } - /// - /// 区域ID - /// - public string area_id { get; set; } + [SugarColumn(IsIgnore =true)] + public string warehouse_name { get; set; } }