using DocumentServiceAPI.Core; using DocumentServiceAPI.Model.cyDocumentModel; using DocumentServiceAPI.Utility; namespace DocumentServiceAPI.Application.DocManage.Services { public class DocClassificationPageSearch : PageBaseSearch { /// /// 分类代码 /// public string Code { get; set; } /// /// 状态 /// public int? Status { get; set; } } public class DocClassificationSearch : BaseSearch { /// /// 分类代码 /// public string Code { get; set; } } /// /// 文档分类 /// public class DocClassificationService : BaseRepository, ITransient { } }