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.QcItemQoInsert;
|
|
|
|
import com.xkrs.newpro.model.qo.QcItemQoUpdate;
|
|
|
|
|
2022-03-10 19:24:42 +08:00
|
|
|
public interface QcItemService {
|
2022-03-10 19:33:25 +08:00
|
|
|
|
|
|
|
String insertQcItem(QcItemQoInsert insertQo);
|
|
|
|
|
|
|
|
String updateQcItem(QcItemQoUpdate updateQo);
|
|
|
|
|
2022-03-10 19:24:42 +08:00
|
|
|
}
|