package com.iamberry.rst.service.cm; import com.iamberry.rst.core.cm.ComplaintDetectInfo; import com.iamberry.rst.faces.cm.ComplaintDetectInfoService; import com.iamberry.rst.service.cm.mapper.AwaitingSignclosedProductMapper; import com.iamberry.rst.service.cm.mapper.ComplaintDetectInfoMapper; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service public class ComplaintDetectInfoServiceImpl implements ComplaintDetectInfoService { @Autowired private ComplaintDetectInfoMapper complaintDetectInfoMapper; @Override public int insert(ComplaintDetectInfo record) { return complaintDetectInfoMapper.insert(record); } @Override public ComplaintDetectInfo getComplaintDetectById(Integer detectId) { return complaintDetectInfoMapper.getComplaintDetectById(detectId); } @Override public int updateComplaintDetectById(ComplaintDetectInfo record) { return complaintDetectInfoMapper.updateComplaintDetectById(record); } }