25 lines
613 B
C#
25 lines
613 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ZR.Model.MES.qc;
|
|
using ZR.Model.MES.ql;
|
|
|
|
|
|
namespace ZR.Service.mes.ql.IService
|
|
{
|
|
public interface IPLRawMaterialService
|
|
{
|
|
|
|
public (List<PLRawMaterial>, int) GetRawMaterialTable(DateTime starttime, DateTime endTime,string pci, string colorCode,int pageNum, int pageSize);
|
|
|
|
public int AddRawMaterialRecords(int num,int size);
|
|
|
|
public int DelRawMaterialRecords(string idGroup);
|
|
|
|
public int UpdateRawMaterialRecords(List<PLRawMaterial> list);
|
|
|
|
}
|
|
}
|