21 lines
468 B
C#
21 lines
468 B
C#
using System;
|
|
using ZR.Model.MES.ql;
|
|
|
|
|
|
namespace ZR.Service.mes.ql.IService
|
|
{
|
|
public interface IPLTestService
|
|
{
|
|
|
|
public (List<PLTest>, int) GetPLTestTable(DateTime starttime, DateTime endTime, string code, string description, int pageNum, int pageSize, int dateType);
|
|
|
|
public int AddPLTestRecords(int num, int size);
|
|
|
|
public int DelPLTestRecords(string idGroup);
|
|
|
|
public int UpdatePLTestRecords(List<PLTest> list);
|
|
|
|
|
|
}
|
|
}
|