143 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			143 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C#
		
	
	
| 
 | |
| //--------------------------------------------------------------------
 | |
| //     此代码由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
 | |
| {
 | |
| 	 ///<summary>
 | |
| 	 ///FrontAuditConfig
 | |
| 	 ///</summary>
 | |
| 	 [Table("FrontAuditConfig")]	
 | |
| 	 public class FrontAuditConfig : Entity, IAuditUpdate, IAuditAdd
 | |
| 	 {
 | |
| 		/// <summary>
 | |
|         /// Value
 | |
|         /// </summary>
 | |
| 	
 | |
| 		public string Value { get; set; }
 | |
| 	
 | |
| 		/// <summary>
 | |
|         /// ValueCN
 | |
|         /// </summary>
 | |
| 
 | |
| 		public string ValueCN { get; set; }
 | |
| 	
 | |
| 		/// <summary>
 | |
|         /// Description
 | |
|         /// </summary>
 | |
| 
 | |
| 		public string Description { get; set; }
 | |
| 	
 | |
| 		/// <summary>
 | |
|         /// CreateTime
 | |
|         /// </summary>
 | |
| 	
 | |
| 		public DateTime CreateTime { get; set; }
 | |
| 	
 | |
| 		/// <summary>
 | |
|         /// CreateUserId
 | |
|         /// </summary>
 | |
| 
 | |
| 		public Guid CreateUserId { get; set; }
 | |
| 	
 | |
| 		/// <summary>
 | |
|         /// UpdateTime
 | |
|         /// </summary>
 | |
| 
 | |
| 		public DateTime UpdateTime { get; set; }
 | |
| 	
 | |
| 		/// <summary>
 | |
|         /// UpdateUserId
 | |
|         /// </summary>
 | |
| 	
 | |
| 		public Guid UpdateUserId { get; set; }
 | |
| 	
 | |
| 		/// <summary>
 | |
|         /// Code
 | |
|         /// </summary>
 | |
| 	
 | |
| 		public string Code { get; set; }
 | |
| 	
 | |
| 		/// <summary>
 | |
|         /// ParentId
 | |
|         /// </summary>
 | |
| 		public Guid? ParentId { get; set; }
 | |
| 	
 | |
| 		/// <summary>
 | |
|         /// IsEnable
 | |
|         /// </summary>
 | |
| 
 | |
| 		public bool? IsEnable { get; set; }
 | |
| 	
 | |
| 		/// <summary>
 | |
|         /// IsConfig
 | |
|         /// </summary>
 | |
| 
 | |
| 		public bool? IsConfig { get; set; }
 | |
| 	
 | |
| 		/// <summary>
 | |
|         ///  ModuleTypeId
 | |
|         /// </summary>
 | |
| 		public string ModuleTypeId { get; set; }
 | |
| 	
 | |
| 		/// <summary>
 | |
|         ///  OptTypeId 
 | |
|         /// </summary>
 | |
| 		public string  OptTypeId  { get; set; }
 | |
| 	
 | |
| 		/// <summary>
 | |
|         /// ChildrenTypeId
 | |
|         /// </summary>
 | |
| 		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; }
 | |
| 
 | |
| 
 | |
| 		public string ObjectTypeId { get; set; }
 | |
| 
 | |
| 
 | |
| 		public bool? IsShowByTrialConfig { get; set; }
 | |
| 
 | |
| 		public string ByTrialConfig { get; set; }
 | |
| 
 | |
| 		/// <summary>
 | |
| 		/// 是否向前站位
 | |
| 		/// </summary>
 | |
| 		public bool? IsForwardPosition { get; set; }
 | |
| 
 | |
| 	    /// <summary>
 | |
| 		/// 标识
 | |
| 		/// </summary>
 | |
| 		public string Identification { get; set; }
 | |
| 
 | |
| 
 | |
| 		/// <summary>
 | |
| 		/// 是否有签名
 | |
| 		/// </summary>
 | |
| 		public bool? IsHaveSign { get; set; }
 | |
| 
 | |
| 		/// <summary>
 | |
| 		/// 是否有原因
 | |
| 		/// </summary>
 | |
| 		public bool? IsHaveReason { get; set; }
 | |
| 
 | |
| 	}
 | |
| 
 | |
| }	 
 |