@@ -4,48 +4,43 @@
|
||||
// 生成时间 2022-02-15 15:45:52
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
||||
using IRaCIS.Core.Domain.Share;
|
||||
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("SystemBasicData")]
|
||||
public class SystemBasicData : BaseFullAuditEntity
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
{
|
||||
///<summary>
|
||||
///SystemBasicData
|
||||
///</summary>
|
||||
[Table("SystemBasicData")]
|
||||
public class SystemBasicData : BaseFullAuditEntity
|
||||
{
|
||||
|
||||
#region 导航属性
|
||||
[JsonIgnore]
|
||||
[ForeignKey("ParentId")]
|
||||
public SystemBasicData Parent { get; set; }
|
||||
#region 导航属性
|
||||
[JsonIgnore]
|
||||
[ForeignKey("ParentId")]
|
||||
public SystemBasicData Parent { get; set; }
|
||||
|
||||
#endregion
|
||||
#endregion
|
||||
|
||||
|
||||
public BasicDataTypeEnum BasicDataTypeEnum { get; set; }
|
||||
public string Name { get; set; } = string.Empty;
|
||||
|
||||
[StringLength(512)]
|
||||
public string Code { get; set; } = null!;
|
||||
public string Value { get; set; } = string.Empty;
|
||||
|
||||
[StringLength(512)]
|
||||
public string Description { get; set; } = null!;
|
||||
public string Description { get; set; } = string.Empty;
|
||||
|
||||
public bool IsEnable { get; set; }
|
||||
public int ShowOrder { get; set; }
|
||||
|
||||
[StringLength(400)]
|
||||
public string Name { get; set; } = null!;
|
||||
public string Code { get; set; } = string.Empty;
|
||||
|
||||
public Guid? ParentId { get; set; }
|
||||
public Guid? ParentId { get; set; }
|
||||
|
||||
public int ShowOrder { get; set; }
|
||||
|
||||
[StringLength(512)]
|
||||
public string Value { get; set; } = null!;
|
||||
public string ValueCN { get; set; } = string.Empty;
|
||||
|
||||
[StringLength(512)]
|
||||
public string ValueCN { get; set; } = null!;
|
||||
public bool IsEnable { get; set; }
|
||||
|
||||
public BasicDataTypeEnum BasicDataTypeEnum { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user