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.
|
|
|
using DS.Module.Core;
|
|
|
|
using DS.WMS.Core.BaseInfo.Dtos;
|
|
|
|
using DS.WMS.Core.System.Dtos;
|
|
|
|
using DS.WMS.Core.System.Entity;
|
|
|
|
|
|
|
|
namespace DS.WMS.Core.System.Interface;
|
|
|
|
|
|
|
|
public interface ICodeGoodsService
|
|
|
|
{
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 列表查询
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="request"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
DataResult<List<CodeGoodsViewModel>> GetListByPage(PageRequest request);
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 获取商品信息
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="id"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
DataResult<CodeGoodsViewModel> GetGoodInfo(string id);
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 导入
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="datas"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public DataResult ImportInfo(List<GoodsImportModel> datas);
|
|
|
|
}
|