package com.jiuqi.mobile.nigo.comeclose.manager.feedback; import java.util.List; import com.jiuqi.mobile.nigo.comeclose.bean.LoadOnGetList; import com.jiuqi.mobile.nigo.comeclose.bean.base.FeedBackBean; import com.jiuqi.mobile.nigo.comeclose.exception.NiGoException; import com.jiuqi.mobile.nigo.comeclose.manager.ISimpleManger; import com.jiuqi.mobile.nigo.comeclose.manager.ManagerAnnotation; import com.jiuqi.mobile.nigo.comeclose.portal.PortalAnnotation; import com.jiuqi.mobile.nigo.comeclose.portal.PortalMethodAnnctation; @ManagerAnnotation(implClass="com.jiuqi.mobile.nigo.biz.app.feedback.FeedBackManagerImpl") @PortalAnnotation(implClass="com.jiuqi.mobile.nigo.biz.app.feedback.FeedBackManagerImpl") public interface IFeedBackManager extends ISimpleManger<FeedBackBean>{ //提交反馈信息 @PortalMethodAnnctation void addFeedBack(FeedBackBean feedbackbean) throws NiGoException; //查询反馈信息,带分页 LoadOnGetList<FeedBackBean> search(FeedBackKey key); /** * @Title: selFeedBack * @Description: TODO(根据信息类型查询反馈意见信息) * @param @param inforType * @param @return 设定文件 * @return List<FeedBackBean> 返回类型 * @throws */ List<FeedBackBean> selFeedBack(int inforType); //删除反馈信息 boolean delFeedBack(String guid); }