47 lines
1.0 KiB
Plaintext
47 lines
1.0 KiB
Plaintext
|
|
/**
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
package com.bonus.weixin.service;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
||
|
|
import org.springframework.stereotype.Service;
|
||
|
|
|
||
|
|
import com.bonus.sys.BaseServiceImp;
|
||
|
|
import com.bonus.weixin.beans.SelfTestBean;
|
||
|
|
import com.bonus.weixin.dao.SelfTestDao;
|
||
|
|
|
||
|
|
@Service("SelfTestService")
|
||
|
|
public class SelfTestServiceImpl extends BaseServiceImp<SelfTestBean> implements SelfTestService {
|
||
|
|
|
||
|
|
@Autowired
|
||
|
|
public SelfTestDao dao;
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public List<SelfTestBean> getSelfTest(SelfTestBean o) {
|
||
|
|
// TODO Auto-generated method stub
|
||
|
|
return dao.getSelfTest(o);
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public List<SelfTestBean> getAnalysis(SelfTestBean o) {
|
||
|
|
// TODO Auto-generated method stub
|
||
|
|
return dao.getAnalysis(o);
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public List<SelfTestBean> findLoginName(SelfTestBean o) {
|
||
|
|
// TODO Auto-generated method stub
|
||
|
|
return dao.findLoginName(o);
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public List<SelfTestBean> findLoginName(String username) {
|
||
|
|
// TODO Auto-generated method stub
|
||
|
|
return dao.findLoginName(username);
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|