25 lines
510 B
Java
Raw Normal View History

2022-03-10 19:24:42 +08:00
package com.xkrs.newpro.service;
2022-03-11 15:37:06 +08:00
import com.xkrs.newpro.model.qo.QcSourceQoDelete;
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-11 15:37:06 +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
/**
2022-03-11 15:37:06 +08:00
* 删除检验数据
*/
String deleteQcSource(QcSourceQoDelete deleteQo);
/**
* 查询检验数据
2022-03-11 10:28:36 +08:00
*/
String queryQcSource(QcSourceQoQuery queryQo);
2022-03-10 19:24:42 +08:00
}