wms基础数据基类改为基础配置基类,同时增加不同业务的启用、禁用功能
This commit is contained in:
@@ -200,4 +200,9 @@ public class ModuleConsts
|
||||
/// </summary>
|
||||
public const string MODULE_BASREGIONMAT_ID = "26187428200229";
|
||||
|
||||
/// <summary>
|
||||
/// 模块标识-盘点签收配置
|
||||
/// </summary>
|
||||
public const string MODULE_WMSCHECKSIGNCONFIG_ID = "30059737083669";
|
||||
|
||||
}
|
||||
@@ -29,10 +29,6 @@ public partial class WmsCheckSignConfig : BaseEntity<string>
|
||||
/// </summary>
|
||||
public string? location_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否启用
|
||||
/// </summary>
|
||||
public int? enabled { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建用户
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
using JNPF.Common.Contracts;
|
||||
using JNPF.Common.Security;
|
||||
using SqlSugar;
|
||||
using Tnb.WarehouseMgr.Entities.Entity.Constraints;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities;
|
||||
|
||||
/// <summary>
|
||||
/// 盘点签收配置
|
||||
/// </summary>
|
||||
public partial class WmsCheckSignConfig : IUpdateEnabledEntity
|
||||
{
|
||||
/// <summary>
|
||||
/// 是否启用
|
||||
/// </summary>
|
||||
public int enabled { get; set; }
|
||||
|
||||
}
|
||||
@@ -39,10 +39,6 @@ public partial class WmsCollocationSchemeH : BaseEntity<string>
|
||||
/// </summary>
|
||||
public int seq { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 状态
|
||||
/// </summary>
|
||||
public int status { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 产品ID
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
using JNPF.Common.Contracts;
|
||||
using JNPF.Common.Security;
|
||||
using SqlSugar;
|
||||
using Tnb.WarehouseMgr.Entities.Entity.Constraints;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities;
|
||||
|
||||
/// <summary>
|
||||
/// 齐套搭配方案主表
|
||||
/// </summary>
|
||||
public partial class WmsCollocationSchemeH : IUpdateEnabledEntity
|
||||
{
|
||||
/// <summary>
|
||||
/// 是否启用
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "status")]
|
||||
public int enabled { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user