2025-07-14 20:39:36 +08:00
|
|
|
|
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;
|
2025-07-16 17:26:20 +08:00
|
|
|
|
using MyCode.Project.Domain.Message.Response.JackYun;
|
2025-07-14 20:39:36 +08:00
|
|
|
|
|
|
|
|
|
|
namespace MyCode.Project.Domain.Repositories
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IWMStoJackyunInventoryMovementView1Repository : IRepository<WMStoJackyunInventoryMovementView1>
|
|
|
|
|
|
{
|
2025-07-16 17:26:20 +08:00
|
|
|
|
List<CreateAndStockinResp> GetInventoryMovement();
|
|
|
|
|
|
|
2025-07-17 14:27:41 +08:00
|
|
|
|
void UpdateStatus(int status, string relDataId);
|
|
|
|
|
|
|
2025-07-16 17:26:20 +08:00
|
|
|
|
}
|
2025-07-14 20:39:36 +08:00
|
|
|
|
}
|