2022-03-10 19:24:42 +08:00
|
|
|
package com.xkrs.newpro.service;
|
|
|
|
|
2022-03-10 19:33:25 +08:00
|
|
|
import com.xkrs.newpro.model.qo.QcSourceQoInsert;
|
2022-03-11 10:28:36 +08:00
|
|
|
import com.xkrs.newpro.model.qo.QcSourceQoQuery;
|
2022-03-10 19:33:25 +08:00
|
|
|
|
2022-03-10 19:24:42 +08:00
|
|
|
public interface QcSourceService {
|
2022-03-10 19:33:25 +08:00
|
|
|
|
2022-03-10 20:50:21 +08:00
|
|
|
/**
|
|
|
|
* 添加质检数据
|
|
|
|
*/
|
2022-03-10 19:33:25 +08:00
|
|
|
String insertQcSource(QcSourceQoInsert insertQo);
|
|
|
|
|
2022-03-11 10:28:36 +08:00
|
|
|
/**
|
|
|
|
* 查询质检数据
|
|
|
|
*/
|
|
|
|
String queryQcSource(QcSourceQoQuery queryQo);
|
|
|
|
|
2022-03-10 19:24:42 +08:00
|
|
|
}
|