21 lines
569 B
C#
21 lines
569 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using ZR.Model.MES.wm;
|
|||
|
|
using ZR.Model.MES.wm.DTO;
|
|||
|
|
|
|||
|
|
namespace ZR.Service.mes.wm.IService
|
|||
|
|
{
|
|||
|
|
public interface IMaterialReceiptService
|
|||
|
|
{
|
|||
|
|
public (List<WmMaterialReceiptDTO>, int) GetWmMaterialReceiptList(int pageNum, int pageSize, int year, int week, int day);
|
|||
|
|
|
|||
|
|
public int SaveOneMaterialReceipt(WmMaterialReceiptDTO wmMaterialReceiptDTO);
|
|||
|
|
|
|||
|
|
public string SavePageMaterialReceipts(List<WmMaterialReceiptDTO> list);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|