username@email.com
2023-10-17 3f4013e9283d1fe29ef40cc8b4d7ee7a590a1590
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,64 @@
        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 int? zbtzs { get; set; }
        public int? ht { get; set; }
        public int? ysbg { get; set; }
        public int? fkpz { get; set; }
        public int? yhpj { get; set; }
        public int? hjzs { get; set; }
    }
    public class DocumentSearch : BaseSearch
    {
        /// <summary>
        /// 分类代码
        /// </summary>
        public string Code { get; set; }
        /// <summary>
        /// 二级分类
        /// </summary>
        public int class_id { get; set; }
    }
    /// <summary>
    /// 文档分类
    /// 文档管理
    /// </summary>
    public class DocClassificationService : BaseRepository<Doc_Classification>, ITransient
    public class DocumentManageService : BaseRepository<Doc_Info>, ITransient
    {
    }
    /// <summary>
    /// 文件管理
    /// </summary>
    public class FileManageService : BaseRepository<File_Info>, ITransient
    {
    }
}