完善service
This commit is contained in:
parent
c4a2d5fda0
commit
f0aea24726
@ -1,4 +1,12 @@
|
||||
package com.xkrs.newpro.service;
|
||||
|
||||
import com.xkrs.newpro.model.qo.QcItemQoInsert;
|
||||
import com.xkrs.newpro.model.qo.QcItemQoUpdate;
|
||||
|
||||
public interface QcItemService {
|
||||
|
||||
String insertQcItem(QcItemQoInsert insertQo);
|
||||
|
||||
String updateQcItem(QcItemQoUpdate updateQo);
|
||||
|
||||
}
|
||||
|
@ -1,4 +1,9 @@
|
||||
package com.xkrs.newpro.service;
|
||||
|
||||
import com.xkrs.newpro.model.qo.QcSourceQoInsert;
|
||||
|
||||
public interface QcSourceService {
|
||||
|
||||
String insertQcSource(QcSourceQoInsert insertQo);
|
||||
|
||||
}
|
||||
|
@ -1,4 +1,12 @@
|
||||
package com.xkrs.newpro.service;
|
||||
|
||||
import com.xkrs.newpro.model.qo.QcSpecQoInsert;
|
||||
import com.xkrs.newpro.model.qo.QcSpecQoUpdate;
|
||||
|
||||
public interface QcSpecService {
|
||||
|
||||
String insertQcSpec(QcSpecQoInsert insertQo);
|
||||
|
||||
String updateQcSpec(QcSpecQoUpdate updateQo);
|
||||
|
||||
}
|
||||
|
@ -1,6 +1,17 @@
|
||||
package com.xkrs.newpro.service.impl;
|
||||
|
||||
import com.xkrs.newpro.model.qo.QcItemQoInsert;
|
||||
import com.xkrs.newpro.model.qo.QcItemQoUpdate;
|
||||
import com.xkrs.newpro.service.QcItemService;
|
||||
|
||||
public class QcItemServiceImpl implements QcItemService {
|
||||
@Override
|
||||
public String insertQcItem(QcItemQoInsert insertQo) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String updateQcItem(QcItemQoUpdate updateQo) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,11 @@
|
||||
package com.xkrs.newpro.service.impl;
|
||||
|
||||
import com.xkrs.newpro.model.qo.QcSourceQoInsert;
|
||||
import com.xkrs.newpro.service.QcSourceService;
|
||||
|
||||
public class QcSourceServiceImpl implements QcSourceService {
|
||||
@Override
|
||||
public String insertQcSource(QcSourceQoInsert insertQo) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,17 @@
|
||||
package com.xkrs.newpro.service.impl;
|
||||
|
||||
import com.xkrs.newpro.model.qo.QcSpecQoInsert;
|
||||
import com.xkrs.newpro.model.qo.QcSpecQoUpdate;
|
||||
import com.xkrs.newpro.service.QcSpecService;
|
||||
|
||||
public class QcSpecServiceImpl implements QcSpecService {
|
||||
@Override
|
||||
public String insertQcSpec(QcSpecQoInsert insertQo) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String updateQcSpec(QcSpecQoUpdate updateQo) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user