qwj
2023-08-16 fed8aa234205247e05305ee7716ae54e894430c7
DocumentServiceAPI.Application/DocManage/Services/DocumentManageService.cs
@@ -4,7 +4,10 @@
namespace DocumentServiceAPI.Application.DocManage.Services
{
    public class DocClassificationPageSearch : PageBaseSearch
    /// <summary>
    /// 文档分页查询条件
    /// </summary>
    public class DocumentPageSearch : PageBaseSearch
    {
        /// <summary>
        /// 分类代码
@@ -12,15 +15,46 @@
        public string Code { get; set; }
        /// <summary>
        /// 类别ID
        /// </summary>
        public int? ClassCode { get; set; }
        /// <summary>
        /// 文档名称
        /// </summary>
        public string Name { get; set; }
        /// <summary>
        /// 单位ID
        /// </summary>
        public int? OrganizationCode { get; set; }
        /// <summary>
        /// 状态
        /// </summary>
        public int? Status { get; set; }
    }
    public class DocumentSearch : BaseSearch
    {
    /// <summary>
    /// 文档分类
        /// 分类代码
    /// </summary>
    public class DocClassificationService : BaseRepository<Doc_Classification>, ITransient
        public string Code { get; set; }
    }
    /// <summary>
    /// 文档管理
    /// </summary>
    public class DocumentManageService : BaseRepository<Doc_Info>, ITransient
    {
    }
    /// <summary>
    /// 文件管理
    /// </summary>
    public class FileManageService : BaseRepository<File_Info>, ITransient
    {
    }
}