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.
35 lines
999 B
C#
35 lines
999 B
C#
using DS.Module.Core;
|
|
using DS.WMS.ContainerManagement.Info.Dtos;
|
|
using DS.WMS.Core.Info.Dtos;
|
|
using DS.WMS.Core.Op.View;
|
|
using DS.WMS.Core.Sys.Dtos;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.ContainerManagement.Info.Interface;
|
|
|
|
public interface ICM_CurrentStateService
|
|
{
|
|
/// <summary>
|
|
/// 列表
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
//DataResult<List<CM_CurrentStateRes>> GetListByPage(PageRequest request);
|
|
public Task<DataResult<List<CM_CurrentStateRes>>> GetListByPage(PageRequest request);
|
|
|
|
public ISugarQueryable<CM_CurrentStateRes> CreateCurrentStateQuery();
|
|
|
|
/// <summary>
|
|
/// 编辑
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
DataResult EditCM_CurrentState(CM_CurrentStateReq model);
|
|
|
|
/// <summary>
|
|
/// 获取详情
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
DataResult<CM_CurrentStateRes> GetCM_CurrentState(string id);
|
|
} |