You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
626 B
28 lines
626 B
2 years ago
|
namespace Cis.Application.Cm;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 标记分组表
|
||
|
/// </summary>
|
||
|
[SugarTable(CmInfo.CmMarkGroupTbName, CmInfo.CmMarkGroupTbDesc)]
|
||
|
[Tenant(CmInfo.DbName)]
|
||
|
public class CmMarkGroup : EntityBase
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 名称
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "名称", Length = 64)]
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 排序
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "排序")]
|
||
|
public int Order { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备注
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "备注", Length = 256)]
|
||
|
[MaxLength(256)]
|
||
|
public string Remark { get; set; }
|
||
|
}
|