You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
679 B
C#
27 lines
679 B
C#
using DS.Module.Core;
|
|
using DS.WMS.Core.Sys.Dtos;
|
|
|
|
namespace DS.WMS.Core.Sys.Interface;
|
|
|
|
public interface ISysDictDataService
|
|
{
|
|
/// <summary>
|
|
/// 列表查询
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
DataResult<List<DictDataRes>> GetListByPage(PageRequest request);
|
|
/// <summary>
|
|
/// 添加字典值
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
DataResult EditDictData(DictDataReq model);
|
|
|
|
/// <summary>
|
|
/// 获取详情
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
DataResult<DictDataRes> GetDictDataInfo(string id);
|
|
} |