涂装实验室输入
This commit is contained in:
24
server/ZR.Service/mes/ql/IService/IPLBatchService.cs
Normal file
24
server/ZR.Service/mes/ql/IService/IPLBatchService.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using ZR.Model.MES.ql;
|
||||
|
||||
|
||||
namespace ZR.Service.mes.ql.IService
|
||||
{
|
||||
public interface IPLBatchService
|
||||
{
|
||||
|
||||
public (List<PLBatch>, int) GetPLBatchTable(DateTime starttime, DateTime endTime, int pageNum, int pageSize);
|
||||
|
||||
public int AddPLBatchRecords(int num, int size);
|
||||
|
||||
public int DelPLBatchRecords(string idGroup);
|
||||
|
||||
public int UpdatePLBatchRecords(List<PLBatch> list);
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
24
server/ZR.Service/mes/ql/IService/IPLRawMaterialService.cs
Normal file
24
server/ZR.Service/mes/ql/IService/IPLRawMaterialService.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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, int pageNum, int pageSize);
|
||||
|
||||
public int AddRawMaterialRecords(int num,int size);
|
||||
|
||||
public int DelRawMaterialRecords(string idGroup);
|
||||
|
||||
public int UpdateRawMaterialRecords(List<PLRawMaterial> list);
|
||||
|
||||
}
|
||||
}
|
||||
24
server/ZR.Service/mes/ql/IService/IPLTestService.cs
Normal file
24
server/ZR.Service/mes/ql/IService/IPLTestService.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using ZR.Model.MES.ql;
|
||||
|
||||
|
||||
namespace ZR.Service.mes.ql.IService
|
||||
{
|
||||
public interface IPLTestService
|
||||
{
|
||||
|
||||
public (List<PLTest>, int) GetPLTestTable(DateTime starttime, DateTime endTime, int pageNum, int pageSize);
|
||||
|
||||
public int AddPLTestRecords(int num, int size);
|
||||
|
||||
public int DelPLTestRecords(string idGroup);
|
||||
|
||||
public int UpdatePLTestRecords(List<PLTest> list);
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user