58 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C#
		
	
	
| //--------------------------------------------------------------------
 | |
| //     此代码由T4模板自动生成  byzhouhang 20210918
 | |
| //	   生成时间 2021-11-22 11:27:53 
 | |
| //     对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
 | |
| //--------------------------------------------------------------------
 | |
| using System;
 | |
| using System.Collections.Generic;
 | |
| namespace IRaCIS.Core.Application.Contracts
 | |
| {
 | |
|     /// <summary> PreviousOtherView  列表视图模型 </summary>
 | |
|     public class PreviousOtherView
 | |
|     {
 | |
|         public Guid Id { get; set; }
 | |
|         public DateTime CreateTime { get; set; }
 | |
|         public string CreateUser { get; set; } = String.Empty;
 | |
|         public DateTime? StartTime { get; set; }
 | |
|         public DateTime? EndTime { get; set; }
 | |
|         public bool IsPD { get; set; }
 | |
|         public Guid SubjectVisitId { get; set; }
 | |
|         public bool IsSubjectLevel { get; set; }
 | |
|         public string Path { get; set; } = String.Empty;
 | |
|         public string FileName { get; set; } = String.Empty;
 | |
|         public string TreatmentType { get; set; } = String.Empty;
 | |
|         //public Guid SubjectId { get; set; }
 | |
|         public Guid CreateUserId { get; set; }
 | |
| 
 | |
|         public string FullFilePath { get; set; } = String.Empty;
 | |
|     }
 | |
| 
 | |
|     ///<summary>PreviousOtherQuery  列表查询参数模型</summary>
 | |
|     public class PreviousOtherQuery
 | |
|     {
 | |
|         public bool? IsSubjectLevel { get; set; }
 | |
| 
 | |
|         public string TreatmentType { get; set; } = String.Empty;
 | |
| 
 | |
|     }
 | |
| 
 | |
|     public class PreviousOtherAddOrEdit
 | |
|     {
 | |
|         public Guid? Id { get; set; }
 | |
|       
 | |
|         public DateTime? StartTime { get; set; }
 | |
|         public DateTime? EndTime { get; set; }
 | |
|         public bool IsPD { get; set; }
 | |
|         public Guid? SubjectVisitId { get; set; }
 | |
|         public bool IsSubjectLevel { get; set; } = true;
 | |
|         public string Path { get; set; }=String.Empty;
 | |
|         public string FileName { get; set; } = String.Empty;
 | |
|         public string TreatmentType { get; set; } = String.Empty;
 | |
|         //public Guid SubjectId { get; set; }
 | |
|     }
 | |
| 
 | |
| 
 | |
| }
 | |
| 
 | |
| 
 |