质量大屏添加合格率,描述排序,新增一个标签解析
This commit is contained in:
@@ -15,15 +15,57 @@ namespace ZR.Service.mes.qc.IService
|
||||
|
||||
#region 获取统计表
|
||||
//获取 首检
|
||||
(List<QcQualityStatisticsFirst>, int) GetQualityStatisticsTable_first(DateTime starttime, DateTime endTime, string workorderid, string partnumber, string product_description, string team, int pageNum, int pageSize);
|
||||
(List<QcQualityStatisticsFirst>, int) GetQualityStatisticsTable_first(
|
||||
DateTime starttime,
|
||||
DateTime endTime,
|
||||
string workorderid,
|
||||
string partnumber,
|
||||
string product_description,
|
||||
string team,
|
||||
int pageNum,
|
||||
int pageSize,
|
||||
int sortType
|
||||
);
|
||||
|
||||
//获取 二检
|
||||
|
||||
(List<QcQualityStatisticsAgain>, int) GetQualityStatisticsTable_again(DateTime starttime, DateTime endTime, string workorderid, string partnumber, string product_description, string team, int pageNum, int pageSize);
|
||||
(List<QcQualityStatisticsAgain>, int) GetQualityStatisticsTable_again(
|
||||
DateTime starttime,
|
||||
DateTime endTime,
|
||||
string workorderid,
|
||||
string partnumber,
|
||||
string product_description,
|
||||
string team,
|
||||
int pageNum,
|
||||
int pageSize,
|
||||
int sortType
|
||||
);
|
||||
|
||||
//获取 三检
|
||||
(List<QcQualityStatisticsFinal>, int) GetQualityStatisticsTable_final(DateTime starttime, DateTime endTime, string workorderid, string partnumber, string product_description, string team, int pageNum, int pageSize);
|
||||
(List<QcQualityStatisticsFinal>, int) GetQualityStatisticsTable_final(
|
||||
DateTime starttime,
|
||||
DateTime endTime,
|
||||
string workorderid,
|
||||
string partnumber,
|
||||
string product_description,
|
||||
string team,
|
||||
int pageNum,
|
||||
int pageSize,
|
||||
int sortType
|
||||
);
|
||||
|
||||
//获取 总检
|
||||
(List<QcQualityStatisticsTotal>, int) GetQualityStatisticsTable_total(DateTime starttime, DateTime endTime, string workorderid, string partnumber, string product_description, string team, int pageNum, int pageSize);
|
||||
(List<QcQualityStatisticsTotal>, int) GetQualityStatisticsTable_total(
|
||||
DateTime starttime,
|
||||
DateTime endTime,
|
||||
string workorderid,
|
||||
string partnumber,
|
||||
string product_description,
|
||||
string team,
|
||||
int pageNum,
|
||||
int pageSize,
|
||||
int sortType
|
||||
);
|
||||
#endregion
|
||||
|
||||
public int DeleteStatisticsTable(string workorderid);
|
||||
@@ -41,6 +83,16 @@ namespace ZR.Service.mes.qc.IService
|
||||
/// <param name="pageSize"></param>
|
||||
/// <param name="type"></param>
|
||||
/// <returns></returns>
|
||||
List<QcQualityStatisticsFirstDto> DownloadStatisticsTableExcel(DateTime starttime, DateTime endTime, string workorderid, string partnumber, string product_description, string team, int pageNum, int pageSize, int type);
|
||||
List<QcQualityStatisticsFirstDto> DownloadStatisticsTableExcel(
|
||||
DateTime starttime,
|
||||
DateTime endTime,
|
||||
string workorderid,
|
||||
string partnumber,
|
||||
string product_description,
|
||||
string team,
|
||||
int pageNum,
|
||||
int pageSize,
|
||||
int type
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user