仓库模块_当前货物表:init

This commit is contained in:
qianhao.xu
2024-03-22 09:29:40 +08:00
parent 3e7cd97255
commit 6e27c0eb94
6 changed files with 276 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
using System;
using ZR.Model;
using ZR.Model.Dto;
using System.Collections.Generic;
using ZR.Model.MES.wms;
using ZR.Model.MES.wms.Dto;
namespace ZR.Service.Business.IBusinessService
{
/// <summary>
/// 成品库当前货物表service接口
/// </summary>
public interface IWmGoodsNowProductionService : IBaseService<WmGoodsNowProduction>
{
PagedInfo<WmGoodsNowProductionDto> GetList(WmGoodsNowProductionQueryDto parm);
WmGoodsNowProduction GetInfo(string Id);
WmGoodsNowProduction AddWmGoodsNowProduction(WmGoodsNowProduction parm);
int UpdateWmGoodsNowProduction(WmGoodsNowProduction parm);
}
}