51 lines
1.5 KiB
C#
51 lines
1.5 KiB
C#
using System;
|
|
using ZR.Model;
|
|
using ZR.Model.Dto;
|
|
|
|
using System.Collections.Generic;
|
|
using ZR.Model.MES.wms;
|
|
using ZR.Model.MES.wms.Dto;
|
|
using Aliyun.OSS;
|
|
|
|
namespace ZR.Service.mes.wms.IService
|
|
{
|
|
/// <summary>
|
|
/// 成品库当前货物表service接口
|
|
/// </summary>
|
|
public interface IWmGoodsNowProductionService : IBaseService<WmGoodsNowProduction>
|
|
{
|
|
PagedInfo<WmGoodsNowProductionDto> GetList(WmGoodsNowProductionQueryDto parm);
|
|
/// <summary>
|
|
/// 批量查看
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
(List<WmGoods_nodeDto>, int) QuerypatchsearchList(WmGoodsNowProductionQueryDto parm);
|
|
|
|
/// <summary>
|
|
/// 移动端 短批次查询
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
List<WmGoodShortPackageCodeDto> QueryshortPatch(CommonQueryDto parm);
|
|
|
|
/// <summary>
|
|
/// 移动端 查询短批次号 细则详情
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
List<WmGoodsNowProductionDto> Patchsearchdetail(WmGoodsNowProductionQueryDto parm);
|
|
|
|
WmGoodsNowProduction GetInfo(string Id);
|
|
|
|
WmGoodsNowProduction AddWmGoodsNowProduction(WmGoodsNowProduction parm);
|
|
|
|
int UpdateWmGoodsNowProduction(WmGoodsNowProduction parm);
|
|
|
|
int ModifyInventoryQuantity(string id, int stack_num);
|
|
|
|
PagedInfo<WmGoodsNowProductionDictDto> GetDictData(WmGoodsNowProductionDictDto parm);
|
|
|
|
}
|
|
}
|