68 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C#
		
	
	
| //--------------------------------------------------------------------
 | |
| //     此代码由T4模板自动生成  byzhouhang 20210918
 | |
| //	   生成时间 2022-02-15 15:46:00 
 | |
| //     对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
 | |
| //--------------------------------------------------------------------
 | |
| using IRaCIS.Core.Domain.Share;
 | |
| using Newtonsoft.Json;
 | |
| using System;
 | |
| using System.Collections.Generic;
 | |
| namespace IRaCIS.Core.Application.Contracts
 | |
| {
 | |
|     /// <summary> SystemBasicDataView  列表视图模型 </summary>
 | |
|     public class SystemBasicDataView: SystemBasicDataAddOrEdit
 | |
|     {
 | |
|      
 | |
|         public DateTime CreateTime { get; set; }
 | |
|         public Guid CreateUserId { get; set; }
 | |
|         public DateTime UpdateTime { get; set; }
 | |
|         public Guid UpdateUserId { get; set; }
 | |
|       
 | |
|     }
 | |
| 
 | |
| 
 | |
|     public class SystemBasicDataSelect
 | |
|     {
 | |
|         public Guid Id { get; set; }
 | |
|         public string Name { get; set; } = string.Empty;
 | |
|         public string ValueCN { get; set; } = string.Empty;
 | |
|         public string Value { get; set; } = string.Empty;
 | |
|         public string Code { get; set; } = string.Empty;
 | |
| 
 | |
|         public Guid? ParentId { get; set; }
 | |
|         public string ParentCode { get; set; } = string.Empty;
 | |
|     }
 | |
| 
 | |
| 
 | |
|     ///<summary>SystemBasicDataQuery  列表查询参数模型</summary>
 | |
|     public class SystemBasicDataQuery:PageInput
 | |
|     {
 | |
|         ///<summary> Name</summary>
 | |
|         public string? Name { get; set; }
 | |
| 
 | |
|         ///<summary> Code</summary>
 | |
|         public string? Code { get; set; }
 | |
| 
 | |
|     }
 | |
| 
 | |
|     ///<summary> SystemBasicDataAddOrEdit  列表查询参数模型</summary>
 | |
|     public class SystemBasicDataAddOrEdit
 | |
|     {
 | |
|         public Guid? Id { get; set; }
 | |
|         public string Name { get; set; } = string.Empty;
 | |
|         public string Value { get; set; } = string.Empty;
 | |
|         public string Description { get; set; } = string.Empty;
 | |
|         public int ShowOrder { get; set; }
 | |
|         public string Code { get; set; } = string.Empty;
 | |
|         public Guid? ParentId { get; set; }
 | |
| 
 | |
|         public string ValueCN { get; set; } = string.Empty;
 | |
| 
 | |
|         public bool IsEnable { get; set; }=true;
 | |
|     }
 | |
| 
 | |
| 
 | |
| }
 | |
| 
 | |
| 
 |