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 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 { /// /// 分类代码 /// public string Code { get; set; } /// /// 二级分类 /// public int class_id { get; set; } } /// /// 文档管理 /// public class DocumentManageService : BaseRepository, ITransient { } /// /// 文件管理 /// public class FileManageService : BaseRepository, ITransient { } }