同步数据模型和数据库对应关系2
continuous-integration/drone/push Build is passing

This commit is contained in:
hang
2024-09-19 23:45:43 +08:00
parent 19f4385055
commit 42e4fe59ec
73 changed files with 1760 additions and 1934 deletions
@@ -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;
}
}
}
}