添加service

This commit is contained in:
liuchengqian 2022-03-10 19:24:42 +08:00
parent 1ce56cbc88
commit c4a2d5fda0
6 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,4 @@
package com.xkrs.newpro.service;
public interface QcItemService {
}

View File

@ -0,0 +1,4 @@
package com.xkrs.newpro.service;
public interface QcSourceService {
}

View File

@ -0,0 +1,4 @@
package com.xkrs.newpro.service;
public interface QcSpecService {
}

View File

@ -0,0 +1,6 @@
package com.xkrs.newpro.service.impl;
import com.xkrs.newpro.service.QcItemService;
public class QcItemServiceImpl implements QcItemService {
}

View File

@ -0,0 +1,6 @@
package com.xkrs.newpro.service.impl;
import com.xkrs.newpro.service.QcSourceService;
public class QcSourceServiceImpl implements QcSourceService {
}

View File

@ -0,0 +1,6 @@
package com.xkrs.newpro.service.impl;
import com.xkrs.newpro.service.QcSpecService;
public class QcSpecServiceImpl implements QcSpecService {
}