/**
* Copyright (c)2010-2011 Enterprise Website Content Management System(EWCMS), All rights reserved.
* EWCMS PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
* http://www.ewcms.com
*/
package com.ewcms.security.manage.dao;
import org.springframework.stereotype.Repository;
import com.ewcms.common.dao.JpaDAO;
import com.ewcms.security.manage.model.Group;
/**
* 用户组数据操作
*
* @author wangwei
*
*/
@Repository
public class GroupDAO extends JpaDAO<String,Group> implements GroupDAOable {
}