You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.1 KiB
C#

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