using System.ComponentModel;
using DS.Module.Core.Data;
namespace DS.WMS.Core.Sys.Entity;
///
/// 打印模块
///
[SqlSugar.SugarTable("sys_print_module", "打印模块")]
public class SysPrintModule: BaseTenantModel
{
///
/// 打印模块名称
///
[SqlSugar.SugarColumn(ColumnDescription = "打印模块名称", IsNullable = false, Length = 100)]
public string ModuleName { get; set; }
///
/// 打印模块唯一编码
///
[SqlSugar.SugarColumn(ColumnDescription = "打印模块唯一编码", IsNullable = false, Length = 100)]
public string ModuleCode { get; set; }
///
/// 排序号
///
[SqlSugar.SugarColumn(ColumnDescription = "排序号", IsNullable = false, DefaultValue ="0")]
public int SortNo { get; set; }
///
///是否可用
///
[Description("是否可用")]
[SqlSugar.SugarColumn(ColumnDescription = "是否可用", IsNullable = false, DefaultValue = "0")]
public bool Disable { get; set; }
}