//--------------------------------------------------------------------
// 此代码由T4模板自动生成 byzhouhang 20210918
// 生成时间 2022-03-28 16:43:12
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
using System;
using IRaCIS.Core.Domain.Share;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace IRaCIS.Core.Domain.Models
{
///
///FrontAuditConfig
///
[Table("FrontAuditConfig")]
public class FrontAuditConfig : Entity, IAuditUpdate, IAuditAdd
{
///
/// Value
///
public string Value { get; set; }
///
/// ValueCN
///
public string ValueCN { get; set; }
///
/// Description
///
public string Description { get; set; }
///
/// CreateTime
///
public DateTime CreateTime { get; set; }
///
/// CreateUserId
///
public Guid CreateUserId { get; set; }
///
/// UpdateTime
///
public DateTime UpdateTime { get; set; }
///
/// UpdateUserId
///
public Guid UpdateUserId { get; set; }
///
/// Code
///
public string Code { get; set; }
///
/// ParentId
///
public Guid? ParentId { get; set; }
///
/// IsEnable
///
public bool? IsEnable { get; set; }
///
/// IsConfig
///
public bool? IsConfig { get; set; }
///
/// ModuleTypeId
///
public string ModuleTypeId { get; set; }
///
/// OptTypeId
///
public string OptTypeId { get; set; }
///
/// ChildrenTypeId
///
public string ChildrenTypeId { get; set; }
public bool? IsShowParent { get; set; }
public string ConfigType { get; set; }
public int? Sort { get; set; }
public string EnumList { get; set; }
public string DictionaryKey { get; set; }
public string EnumType { get; set; }
}
}