25 lines
639 B
C#
25 lines
639 B
C#
|
|
using Gatedge.K3Cloud.Utils.Model.K3Request;
|
|||
|
|
using Gatedge.K3Cloud.Utils.Model.K3Result;
|
|||
|
|
|
|||
|
|
namespace Gatedge.ScanCode.Services.IServices
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 仓库接口
|
|||
|
|
/// </summary>
|
|||
|
|
public interface IStockService
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 获取列表接口
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="billQuery"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
public ListResult List(Query billQuery);
|
|||
|
|
/// <summary>
|
|||
|
|
/// 获取查看接口
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="param"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
public object View(View param);
|
|||
|
|
}
|
|||
|
|
}
|