升级代码结构,采用Maven来管理jar包(10)
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
package com.jsh.service.materials;
|
||||
|
||||
import com.jsh.base.BaseService;
|
||||
import com.jsh.dao.materials.AccountHeadIDAO;
|
||||
import com.jsh.util.JshException;
|
||||
import com.jsh.model.po.AccountHead;
|
||||
import com.jsh.model.po.UserBusiness;
|
||||
import com.jsh.util.PageUtil;
|
||||
|
||||
public class AccountHeadService extends BaseService<AccountHead> implements AccountHeadIService
|
||||
{
|
||||
@SuppressWarnings("unused")
|
||||
private AccountHeadIDAO accountHeadDao;
|
||||
|
||||
|
||||
public void setAccountHeadDao(AccountHeadIDAO accountHeadDao) {
|
||||
this.accountHeadDao = accountHeadDao;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
protected Class<AccountHead> getEntityClass()
|
||||
{
|
||||
return AccountHead.class;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void find(PageUtil<AccountHead> pageUtil, String maxid) throws JshException
|
||||
{
|
||||
accountHeadDao.find(pageUtil, maxid);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user