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.
29 lines
741 B
C#
29 lines
741 B
C#
using DS.Module.Core;
|
|
using DS.WMS.Core.FeeModule.Dtos;
|
|
|
|
namespace DS.WMS.Core.FeeModule.Interface;
|
|
|
|
public interface IWmsStorageBillService
|
|
{
|
|
/// <summary>
|
|
/// 列表查询
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
DataResult<List<WmsStorageBillListPageModel>> GetListByPage(PageRequest request);
|
|
|
|
|
|
/// <summary>
|
|
/// 获取信息
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
DataResult<WmsStorageBillInfoViewModel> GetWmsStorageBillInfo(string id);
|
|
|
|
/// <summary>
|
|
/// 获取明细
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
DataResult GetWmsStorageBillDetailList(string id);
|
|
} |