19 lines
379 B
C#
19 lines
379 B
C#
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; }
|
|
|
|
}
|