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.
42 lines
1.0 KiB
C#
42 lines
1.0 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
|
|
namespace DS.WMS.Core.Sys.Entity;
|
|
/// <summary>
|
|
/// 系统租户参数类型表
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("sys_tenant_param")]
|
|
public class SysTenantParam : BaseModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(Length = 100,ColumnDescription="名称")]
|
|
public string ParamName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 编码
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(Length = 50,ColumnDescription="编码")]
|
|
public string ParamCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 类型
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(Length = 50, ColumnDescription = "类型")]
|
|
public string Type { get; set; }
|
|
/// <summary>
|
|
/// 排序
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "排序")]
|
|
public int? OrderNo { get; set; } = 100;
|
|
|
|
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "状态")]
|
|
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
|
|
|
|
|
|
} |