package com.ks.app.service.inter.feedback; import com.ks.app.entity.feedback.Advice; import com.ks.app.service.query.feedback.AdviceQuery; import java.util.List; public interface AdviceService { /** * 获取列表 * @param adviceQuery * @param page * @param pageSize * @return */ public List list(AdviceQuery adviceQuery, int page, int pageSize) ; /** * */ public long count(AdviceQuery adviceQuery) ; /** * */ public Advice get(String id) ; /** * */ public void add(Advice advice) throws Exception; /** * */ public void update(Advice advice) ; /** * */ public void delete(List idList) ; }