整理命名空间
continuous-integration/drone/push Build is passing

This commit is contained in:
hang
2024-09-20 00:00:13 +08:00
parent 42e4fe59ec
commit 0a1ce59670
47 changed files with 2501 additions and 2599 deletions
@@ -8,30 +8,27 @@ using IRaCIS.Core.Domain.Share;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;
namespace IRaCIS.Core.Domain.Models
namespace IRaCIS.Core.Domain.Models;
[Comment("用户配置 - WL模板")]
[Table("UserWLTemplate")]
public class UserWLTemplate : BaseAddAuditEntity
{
[Comment("用户配置 - WL模板")]
[Table("UserWLTemplate")]
public class UserWLTemplate : BaseAddAuditEntity
{
#region
#region
#endregion
#endregion
public string TemplateName { get; set; } = string.Empty;
public string TemplateName { get; set; } = string.Empty;
public Guid UserId { get; set; }
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;
}
public bool IsPitchOn { get; set; } = true;
}