package com.xkrs.newpro.service; import com.xkrs.newpro.model.qo.QcSourceQoInsert; import com.xkrs.newpro.model.qo.QcSourceQoQuery; public interface QcSourceService { /** * 添加质检数据 */ String insertQcSource(QcSourceQoInsert insertQo); /** * 查询质检数据 */ String queryQcSource(QcSourceQoQuery queryQo); }