39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
|
|
//--------------------------------------------------------------------
|
|
// 此代码由T4模板自动生成 byzhouhang 20210918
|
|
// 生成时间 2022-03-31 13:18:42
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
using System;
|
|
using IRaCIS.Core.Domain.Share;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Microsoft.EntityFrameworkCore;
|
|
namespace IRaCIS.Core.Domain.Models;
|
|
|
|
|
|
[Comment("数据上传 | 数据导出 | 邮件附件 文件记录表 (需要同步)")]
|
|
[Table("CommonDocument")]
|
|
public class CommonDocument : BaseFullDeleteAuditEntity
|
|
{
|
|
[Comment(" 业务场景")]
|
|
public EmailBusinessScenario BusinessScenarioEnum { get; set; }
|
|
|
|
public string Code { get; set; } = null!;
|
|
|
|
[Comment(" 系统标准枚举")]
|
|
public CriterionType? CriterionTypeEnum { get; set; }
|
|
|
|
public string Description { get; set; } = null!;
|
|
|
|
[Comment(" 类型-上传|导出|邮件附件")]
|
|
public CommonDocumentFileType FileTypeEnum { get; set; }
|
|
|
|
public string Name { get; set; } = null!;
|
|
|
|
public string NameCN { get; set; } = null!;
|
|
|
|
public string Path { get; set; } = null!;
|
|
}
|
|
|
|
|