32 lines
924 B
C#
32 lines
924 B
C#
|
|
using System;
|
||
|
|
using SqlSugar;
|
||
|
|
using Infrastructure.Attribute;
|
||
|
|
using Infrastructure.Extensions;
|
||
|
|
using ZR.Model;
|
||
|
|
using ZR.Model.Dto;
|
||
|
|
using ZR.Model.MES.wms;
|
||
|
|
using ZR.Repository;
|
||
|
|
using ZR.Service.Business.IBusinessService;
|
||
|
|
using System.Linq;
|
||
|
|
using ZR.Service.mes.wms.IService;
|
||
|
|
using ZR.Model.MES.wms.Dto;
|
||
|
|
|
||
|
|
namespace ZR.Service.Business
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 仓库操作日志Service业务层处理
|
||
|
|
/// </summary>
|
||
|
|
[AppService(ServiceType = typeof(IWmGoodsActionService), ServiceLifetime = LifeTime.Transient)]
|
||
|
|
public class WmGoodsActionService : BaseService<WmGoodsChangeLog>, IWmGoodsActionService
|
||
|
|
{
|
||
|
|
public WmGoodsChangeLog doConsolidationGoods(WmGoodsConsolidationDto parm)
|
||
|
|
{
|
||
|
|
throw new NotImplementedException();
|
||
|
|
}
|
||
|
|
|
||
|
|
public WmGoodsChangeLog doUnpackingGoods(WmGoodsUnpackingDto parm)
|
||
|
|
{
|
||
|
|
throw new NotImplementedException();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|