48 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
//--------------------------------------------------------------------
 | 
						|
//     此代码由T4模板自动生成  byzhouhang 20210918
 | 
						|
//	   生成时间 2022-01-05 09:17:10 
 | 
						|
//     对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
 | 
						|
//--------------------------------------------------------------------
 | 
						|
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
namespace IRaCIS.Core.Application.Contracts
 | 
						|
{
 | 
						|
    /// <summary> TrialDocumentUserConfirmView  列表视图模型 </summary>
 | 
						|
    public class TrialDocumentUserConfirmView
 | 
						|
    {
 | 
						|
        public Guid TrialId { get; set; }
 | 
						|
 | 
						|
        public Guid? TrialDocumentId { get; set; }
 | 
						|
 | 
						|
        public DateTime? ConfirmTime { get; set; }
 | 
						|
 | 
						|
        public Guid? ConfirmUserId { get; set; }
 | 
						|
 | 
						|
        public string UserName { get; set; } = string.Empty;
 | 
						|
 | 
						|
        public string RealName { get; set; } = string.Empty;
 | 
						|
 | 
						|
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
 | 
						|
    
 | 
						|
 | 
						|
 | 
						|
    public class NeedConfirmedUserTypeView
 | 
						|
    {
 | 
						|
        public Guid NeedConfirmUserTypeId { get; set; }
 | 
						|
 | 
						|
        public string UserTypeShortName { get; set; } = string.Empty;
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
  
 | 
						|
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
 |