10 lines
178 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
String insertQcSource(QcSourceQoInsert insertQo);
2022-03-10 19:24:42 +08:00
}