ars.module.people.repository.AbstractGroupRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ars-module-people Show documentation
Show all versions of ars-module-people Show documentation
Ars framework module people
package ars.module.people.repository;
import ars.module.people.model.Group;
import ars.module.people.repository.GroupRepository;
import ars.database.hibernate.HibernateSimpleRepository;
/**
* 部门数据持久抽象实现
*
* @author yongqiangwu
*
* @param
* 数据模型
*/
public abstract class AbstractGroupRepository extends HibernateSimpleRepository
implements GroupRepository {
}