username@email.com
2023-10-17 3f4013e9283d1fe29ef40cc8b4d7ee7a590a1590
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
using DocumentServiceAPI.Core;
using DocumentServiceAPI.Model.cyDocumentModel;
using DocumentServiceAPI.Utility;
 
namespace DocumentServiceAPI.Application.DocManage.Services
{
    /// <summary>
    /// 文档分页查询条件
    /// </summary>
    public class DocumentPageSearch : PageBaseSearch
    {
        /// <summary>
        /// 分类代码
        /// </summary>
        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 DocumentManageService : BaseRepository<Doc_Info>, ITransient
    {
    }
 
    /// <summary>
    /// 文件管理
    /// </summary>
    public class FileManageService : BaseRepository<File_Info>, ITransient
    {
    }
}