/** * 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 */ /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.ewcms.plugin.online.dao; import com.ewcms.common.dao.JpaDAO; import com.ewcms.plugin.online.model.Advisor; import org.springframework.stereotype.Repository; /** * * @author wangwei */ @Repository public class AdvisorDAO extends JpaDAO<Integer, Advisor> { }