using DocumentServiceAPI.Core; using DocumentServiceAPI.Model.cyDocumentModel; using DocumentServiceAPI.Utility; namespace DocumentServiceAPI.Application.DocManage.Services { /// /// 文档分页查询条件 /// public class DocumentPageSearch : PageBaseSearch { /// /// 分类代码 /// public string Code { get; set; } /// /// 类别ID /// public int? ClassCode { get; set; } /// /// 文档名称 /// public string Name { get; set; } /// /// 单位ID /// public int? OrganizationCode { get; set; } /// /// 状态 /// public int? Status { get; set; } } public class DocumentSearch : BaseSearch { /// /// 分类代码 /// public string Code { get; set; } } /// /// 文档管理 /// public class DocumentManageService : BaseRepository, ITransient { } /// /// 文件管理 /// public class FileManageService : BaseRepository, ITransient { } }