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 implements AccountIService { @SuppressWarnings("unused") private AccountIDAO accountDao; public void setAccountDao(AccountIDAO accountDao) { this.accountDao = accountDao; } @Override protected Class getEntityClass() { return Account.class; } }