15 lines
352 B
Java
15 lines
352 B
Java
package com.jsh.dao.basic;
|
|
|
|
import com.jsh.base.BaseIDAO;
|
|
import com.jsh.exception.JshException;
|
|
import com.jsh.model.po.UserBusiness;
|
|
import com.jsh.util.common.PageUtil;
|
|
|
|
public interface UserBusinessIDAO extends BaseIDAO<UserBusiness>
|
|
{
|
|
/*
|
|
* 测试hql语句
|
|
*/
|
|
void find(PageUtil<UserBusiness> pageUtil,String ceshi) throws JshException;
|
|
}
|