IQC开始

This commit is contained in:
qianhao.xu
2023-11-24 20:40:45 +08:00
parent ce2e23ca02
commit 7ba84f96cd
10 changed files with 212 additions and 33 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ZR.Model.MES.wm;
namespace ZR.Service.mes.wm.IService
{
public interface IMaterialreturnService
{
public (List<WmMaterialreturn>, int) Getmaterialreturn(int pageNum, int pageSize, int year, int week, int date);
}
}