20 lines
519 B
C#
20 lines
519 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.ZHMDModel;
|
|
using MyCode.Project.Infrastructure.Common;
|
|
using MyCode.Project.Domain.Message;
|
|
|
|
namespace MyCode.Project.Domain.Repositories.ZHMDRepositories
|
|
{
|
|
public interface IWMStoJackyunInventoryMovementView1Repository
|
|
{
|
|
List<WMStoJackyunInventoryMovementView1> GetList(DateTime now);
|
|
|
|
}
|
|
}
|