23 lines
646 B
C#
23 lines
646 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using MyCode.Project.Infrastructure;
|
|
using MyCode.Project.Domain;
|
|
using MyCode.Project.Domain.Model;
|
|
using MyCode.Project.Infrastructure.Common;
|
|
using MyCode.Project.Domain.Message;
|
|
using MyCode.Project.Domain.Message.Response.JackYun;
|
|
|
|
namespace MyCode.Project.Domain.Repositories
|
|
{
|
|
public interface IWMStoJackyunInventoryMovementView1Repository : IRepository<WMStoJackyunInventoryMovementView1>
|
|
{
|
|
List<CreateAndStockinResp> GetInventoryMovement();
|
|
|
|
void UpdateStatus(int status, string relDataId);
|
|
|
|
}
|
|
}
|