package com.zhujizheng.IHome.feedback.service; import com.zhujizheng.IHome.feedback.dto.PYPushFeedBackDTO; import com.zhujizheng.IHome.feedback.vo.PYFeedBackVO; import com.zhujizheng.IHome.generator.dao.PYFeedBack; import java.util.List; /** * Created with IntelliJ IDEA *

* Author: yons * Date: 2019/04/22 * Time: 02:08 * Description: * Copyright © 2019年 com.zhujizheng. All rights reserved. */ public interface PYFeedBackService { /** * @Description: 上传反馈数据 * @Param: com.zhujizheng.IHome.feedback.dto.PYFeedBackDTO * @return: 非0 成功,0 失败 * @Author: 朱吉峥 * @Date: 2019/04/21 */ int pushFeedBack(PYPushFeedBackDTO feedBackDTO); /** * @Description: 获取反馈数据 * @Param: 反馈时间,反馈状态更新时间 * @return: com.zhujizheng.IHome.feedback.vo.PYFeedBackVO; * @Author: 朱吉峥 * @Date: 2019/07/03 */ List pullFeedBackVO(long feedbackTime, long statusUpdateTime, int status); /** * @Description: 获取未处理的反馈数据 * @Param: 状态 * @return: com.zhujizheng.IHome.generator.dao.PYFeedBack; * @Author: 朱吉峥 * @Date: 2019/10/14 */ List pullNumFeedBackVO(int status); /** * @Description: 删除反馈数据 * @Param: 反馈id * @return: 非0 成功,0 失败 * @Author: 朱吉峥 * @Date: 2019/07/24 */ int deleteFeedbackByQaId(int qaId); /** * @Description: 更新反馈数据 * @Param: [反馈id, 状态值] * @return: 非0 成功,0 失败 * @Author: 朱吉峥 * @Date: 2019/07/24 */ int updateFeedback(int qaId, int status); }