Files
YunTongJackYunTask/Reportapi/MyCode.Project.Domain/ZHMDRepositories/IWMStoJackyunInventoryMovementView2Repository.cs

21 lines
554 B
C#
Raw Normal View History

2025-07-12 16:58:00 +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.ZHMDModel;
using MyCode.Project.Infrastructure.Common;
using MyCode.Project.Domain.Message;
2025-07-16 14:41:39 +08:00
using MyCode.Project.Domain.Model;
2025-07-12 16:58:00 +08:00
namespace MyCode.Project.Domain.Repositories.ZHMDRepositories
{
2025-07-16 14:41:39 +08:00
public interface IWMStoJackyunInventoryMovementView2Repository
2025-07-12 16:58:00 +08:00
{
List<WMStoJackyunInventoryMovementView1> GetList(DateTime now);
}
}