移动系统liao
2024-12-26 b80a3aa37ac5bed12dd6c49e9e731d5f375f80d9
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
using DocumentServiceAPI.Core;
using DocumentServiceAPI.Model.cyDocumentModel;
using DocumentServiceAPI.Utility;
 
namespace DocumentServiceAPI.Application.DocManage.Services
{
    public class DocClassificationPageSearch : PageBaseSearch
    {
        /// <summary>
        /// 分类代码
        /// </summary>
        public string Code { get; set; }
 
        /// <summary>
        /// 状态
        /// </summary>
        public int? Status { get; set; }
    }
 
    public class DocClassificationSearch : BaseSearch
    {
        /// <summary>
        /// 分类代码
        /// </summary>
        public string Code { get; set; }
 
    }
 
    /// <summary>
    /// 文档分类
    /// </summary>
    public class DocClassificationService : BaseRepository<Doc_Classification>, ITransient
    {
    }
}