package com.yssh.service.impl; import com.yssh.dao.YsshSuYuanFeedbackMapper; import com.yssh.entity.YsshSuYuanFeedback; import com.yssh.service.YsshSuYuanFeedbackService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; /** * @author wMeng * @ClassName YsshSuYuanFeedbackServiceImpl * @Description TODO * @date 2022/12/14 15:00 * @Version 1.0 */ @Service public class YsshSuYuanFeedbackServiceImpl implements YsshSuYuanFeedbackService { @Autowired private YsshSuYuanFeedbackMapper feedbackMapper; @Override public List query(Integer suYuanId,String name, String vocsName) { return feedbackMapper.query(suYuanId,name,vocsName); } @Override public int insert(YsshSuYuanFeedback ysshSuYuanFeedback) { return feedbackMapper.insert(ysshSuYuanFeedback); } @Override public int update(YsshSuYuanFeedback ysshSuYuanFeedback) { return feedbackMapper.update(ysshSuYuanFeedback); } @Override public Double statistics() { return feedbackMapper.statistics(); } }