20 lines
449 B
Plaintext
20 lines
449 B
Plaintext
|
|
package com.bonus.weixin.dao;
|
|
|
|
import java.util.List;
|
|
|
|
import com.bonus.core.BonusBatis;
|
|
import com.bonus.sys.BaseDao;
|
|
import com.bonus.weixin.beans.SelfTestBean;
|
|
|
|
@BonusBatis
|
|
public interface SelfTestDao extends BaseDao<SelfTestBean> {
|
|
|
|
List<SelfTestBean> getSelfTest( SelfTestBean o);
|
|
|
|
List<SelfTestBean> getAnalysis( SelfTestBean o);
|
|
|
|
List<SelfTestBean> findLoginName(SelfTestBean o);
|
|
List<SelfTestBean> findLoginName(String username);
|
|
}
|