GlobalUsings 清理实体层
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-09-20 09:20:04 +08:00
parent 0a1ce59670
commit 32931e155c
187 changed files with 7126 additions and 7323 deletions
+17 -23
View File
@@ -1,31 +1,25 @@
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace IRaCIS.Core.Domain.Models;
[Comment("稽查 - 后端接收前端上传 文件记录表")]
[Table("InspectionFile")]
public class InspectionFile : BaseAddAuditEntity
namespace IRaCIS.Core.Domain.Models
{
#region
///<summary>
/// 一致性核查文件
///</summary>
[Table("InspectionFile")]
public class InspectionFile : BaseAddAuditEntity
{
#region
#endregion
#endregion
[Comment(" 文件名称")]
[StringLength(400)]
public string FileName { get; set; } = null!;
public string FileName { get; set; } = string.Empty;
[Comment(" 相对路径")]
[StringLength(400)]
public string RelativePath { get; set; } = null!;
[Comment(" 项目ID")]
public Guid TrialId { get; set; }
public string RelativePath { get; set; } = string.Empty;
public Guid TrialId { get; set; }
}
}