@@ -7,40 +7,31 @@ using System;
|
||||
using IRaCIS.Core.Domain.Share;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
{
|
||||
///<summary>
|
||||
///UserWLTemplate
|
||||
///</summary>
|
||||
[Table("UserWLTemplate")]
|
||||
public class UserWLTemplate : BaseAddAuditEntity
|
||||
{
|
||||
[Comment("用户配置 - WL模板")]
|
||||
[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 WW { get; set; }
|
||||
|
||||
public int WL { get; set; }
|
||||
|
||||
public int WL { get; set; }
|
||||
public int ShowOrder { get; set; } = 0;
|
||||
|
||||
|
||||
public int ShowOrder { get; set; } = 0;
|
||||
public bool IsPitchOn { get; set; } = true;
|
||||
|
||||
/// <summary>
|
||||
/// 是否为默认
|
||||
/// </summary>
|
||||
public bool IsPitchOn { get; set; } = true;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user