Files
irc-netcore-api/IRaCIS.Core.Domain/QC/ConsistencyCheckFile.cs
T
hang 19f4385055
continuous-integration/drone/push Build is passing
同步数据模型和数据库对应关系1
2024-09-19 21:56:36 +08:00

32 lines
690 B
C#

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
{
#region 导航属性
#endregion
[Comment(" 文件名称")]
[StringLength(400)]
public string FileName { get; set; } = null!;
[Comment(" 相对路径")]
[StringLength(400)]
public string RelativePath { get; set; } = null!;
[Comment(" 项目ID")]
public Guid TrialId { get; set; }
}