faed52fce67e67157b4cf102ae0ceecd0d9f8fb1.svn-base
646 字节
package yxy.timer.dao;
import java.util.List;
import yxy.timer.sale.YxyMailNumCountInfo;
public interface YxyMailNumCountInfoSaleDao {
/**实体插入*/
public int addPojo(YxyMailNumCountInfo o)throws Exception;
/**实体编辑*/
public void updatePojo(YxyMailNumCountInfo o)throws Exception;
/**HQL查询*/
public List<YxyMailNumCountInfo> findByHql(String hql)throws Exception;
/**指定条记录*/
public List<YxyMailNumCountInfo> findByHqlSet(String hql,int num)throws Exception;
/**SQL查询*/
public List<Object> findBySqlQuery(String sql)throws Exception;
/**HQL更新*/
public void updateByHql(String hql)throws Exception;
}