24 lines
502 B
Java
24 lines
502 B
Java
package com.jsh.service.basic;
|
|
|
|
import com.jsh.base.BaseService;
|
|
import com.jsh.dao.basic.AccountIDAO;
|
|
import com.jsh.model.po.Account;
|
|
|
|
public class AccountService extends BaseService<Account> implements AccountIService
|
|
{
|
|
@SuppressWarnings("unused")
|
|
private AccountIDAO accountDao;
|
|
|
|
public void setAccountDao(AccountIDAO accountDao)
|
|
{
|
|
this.accountDao = accountDao;
|
|
}
|
|
|
|
@Override
|
|
protected Class<Account> getEntityClass()
|
|
{
|
|
return Account.class;
|
|
}
|
|
|
|
}
|