13 lines
220 B
Java
Raw Normal View History

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-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-10 19:24:42 +08:00
}