AppQQuestionDao.java 684 Bytes
Newer Older
Zhou Yang's avatar
Zhou Yang committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
package com.hmit.kernes.dao;

import com.hmit.kernes.entity.AppQQuestionEntity;

import java.util.List;
import java.util.Map;

public interface AppQQuestionDao extends BaseDao<AppQQuestionEntity> {
    @Override
    void save(AppQQuestionEntity appQQuestionEntity);

    @Override
    int update(AppQQuestionEntity appQQuestionEntity);

    @Override
    int deleteBatch(Object[] id);

    @Override
    AppQQuestionEntity queryObject(Object id);

    @Override
    List<AppQQuestionEntity> queryList(Map<String, Object> map);

    @Override
    int queryTotal(Map<String, Object> map);

    @Override
    void saveBatch(List<AppQQuestionEntity> list);
}