| | |
| | | |
| | | namespace DocumentServiceAPI.Application.DocManage.Services |
| | | { |
| | | public class DocClassificationPageSearch : PageBaseSearch |
| | | /// <summary> |
| | | /// 文档分页查询条件 |
| | | /// </summary> |
| | | public class DocumentPageSearch : PageBaseSearch |
| | | { |
| | | /// <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 class DocumentSearch : BaseSearch |
| | | { |
| | | /// <summary> |
| | | /// 文档分类 |
| | | /// 分类代码 |
| | | /// </summary> |
| | | public class DocClassificationService : BaseRepository<Doc_Classification>, ITransient |
| | | public string Code { get; set; } |
| | | |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 文档管理 |
| | | /// </summary> |
| | | public class DocumentManageService : BaseRepository<Doc_Info>, ITransient |
| | | { |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 文件管理 |
| | | /// </summary> |
| | | public class FileManageService : BaseRepository<File_Info>, ITransient |
| | | { |
| | | } |
| | | } |