55 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C#
		
	
	
//--------------------------------------------------------------------
 | 
						|
//     此代码由T4模板自动生成  byzhouhang 20210918
 | 
						|
//	   生成时间 2022-03-31 13:18:48 
 | 
						|
//     对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
 | 
						|
//--------------------------------------------------------------------
 | 
						|
using System;
 | 
						|
using IRaCIS.Core.Domain.Share;
 | 
						|
using System.Collections.Generic;
 | 
						|
namespace IRaCIS.Core.Application.ViewModel
 | 
						|
{
 | 
						|
    /// <summary> CommonDocumentView  列表视图模型 </summary>
 | 
						|
    public class CommonDocumentView : CommonDocumentAddOrEdit
 | 
						|
    {
 | 
						|
 | 
						|
        public string FileType { get; set; } = String.Empty;
 | 
						|
        public string ModuleType { get; set; } = String.Empty;
 | 
						|
 | 
						|
        public string FullFilePath { get; set; } = String.Empty;
 | 
						|
 | 
						|
 | 
						|
        public DateTime? DeletedTime { get; set; }
 | 
						|
        public DateTime CreateTime { get; set; }
 | 
						|
        public DateTime UpdateTime { get; set; }
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
    ///<summary>CommonDocumentQuery  列表查询参数模型</summary>
 | 
						|
    public class CommonDocumentQuery:PageInput
 | 
						|
    {
 | 
						|
        public Guid? FileTypeId { get; set; }
 | 
						|
        public Guid? ModuleTypeId { get; set; }
 | 
						|
        public string Name { get; set; } = String.Empty;
 | 
						|
 | 
						|
        public string Code { get; set; } = String.Empty;
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
    ///<summary> CommonDocumentAddOrEdit  列表查询参数模型</summary>
 | 
						|
    public class CommonDocumentAddOrEdit
 | 
						|
    {
 | 
						|
        public Guid? Id { get; set; }
 | 
						|
        public string Name { get; set; } = String.Empty;
 | 
						|
        public string Path { get; set; } = String.Empty;
 | 
						|
        public string Description { get; set; } = String.Empty;
 | 
						|
        public bool IsDeleted { get; set; }
 | 
						|
        public string Code { get; set; } = String.Empty;
 | 
						|
        public Guid FileTypeId { get; set; }
 | 
						|
        public Guid ModuleTypeId { get; set; }
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
 |