41 lines
610 B
C#
41 lines
610 B
C#
|
|
|
|
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
///<summary>
|
|
///UserWLTemplate
|
|
///</summary>
|
|
[Table("UserWLTemplate")]
|
|
public class UserWLTemplate : BaseAddAuditEntity
|
|
{
|
|
#region 导航属性
|
|
|
|
#endregion
|
|
|
|
public string TemplateName { get; set; } = string.Empty;
|
|
|
|
|
|
public Guid UserId { get; set; }
|
|
|
|
|
|
|
|
|
|
public int WW { get; set; }
|
|
|
|
|
|
public int WL { get; set; }
|
|
|
|
|
|
public int ShowOrder { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// 是否为默认
|
|
/// </summary>
|
|
public bool IsPitchOn { get; set; } = true;
|
|
|
|
}
|
|
|
|
|
|
}
|