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