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; }
|
}
|
|
/// <summary>
|
/// 文档分类
|
/// </summary>
|
public class DocClassificationService : BaseRepository<Doc_Classification>, ITransient
|
{
|
}
|
}
|