8474716a390703b5cc2a5b0ed60ae915cce3e845.svn-base
964 字节
package com.espeed.dao;
import java.util.List;
import com.espeed.centre.pojo.CentreYxyedmAlibaba;
/**
* 项目名称: 统一验证中心系统
* 版权所有: 深圳市科飞时速网络技术有限公司(0755-88843776)
* 技术支持: info@21gmail.com
* 单元名称: 营销邮seo阿里认证Dao
* 开始时间: 2018.05.14
* 开发人员: 陈南巧
*/
public interface CentreYxyedmAlibabaDao {
/**实体插入*/
public int addPojo(CentreYxyedmAlibaba o)throws Exception;
/**实体编辑*/
public void updatePojo(CentreYxyedmAlibaba o)throws Exception;
/**HQL查询*/
public List<CentreYxyedmAlibaba> findByHql(String hql)throws Exception;
/**SQL查询*/
public List<Object> findBySqlFind(String sql)throws Exception;
/**HQL更新*/
public void updateByHql(String hql)throws Exception;
/**sql更新*/
public void updateBySql(String sql)throws Exception;
/**HQL查询数量*/
public int findByHqlCount(String hql)throws Exception;
}