14 lines
293 B
Plaintext
14 lines
293 B
Plaintext
|
|
package com.bonus.exampage.service;
|
||
|
|
|
||
|
|
|
||
|
|
import org.springframework.stereotype.Service;
|
||
|
|
|
||
|
|
import com.bonus.exampage.beans.ExamBean;
|
||
|
|
import com.bonus.sys.BaseServiceImp;
|
||
|
|
|
||
|
|
@Service("ExamService")
|
||
|
|
public class ExamServiceImp extends BaseServiceImp<ExamBean> implements ExamService {
|
||
|
|
|
||
|
|
|
||
|
|
}
|