//--------------------------------------------------------------------
// 此代码由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
{
/// CommonDocumentView 列表视图模型
public class CommonDocumentView : CommonDocumentAddOrEdit
{
public string FileType { get; set; } = String.Empty;
public string ModuleType { get; set; } = String.Empty;
public DateTime? DeletedTime { get; set; }
public DateTime CreateTime { get; set; }
public DateTime UpdateTime { get; set; }
}
///CommonDocumentQuery 列表查询参数模型
public class CommonDocumentQuery
{
public Guid? FileTypeId { get; set; }
public Guid? ModuleId { get; set; }
public string Name { get; set; } = String.Empty;
public string Code { get; set; } = String.Empty;
}
/// CommonDocumentAddOrEdit 列表查询参数模型
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 ModuleId { get; set; }
}
}