| | |
| | | import org.springframework.stereotype.Service; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * title: 随手拍、微心愿处理人绑定表表服务实现类 |
| | | * <p> |
| | |
| | | * @param serviceType 业务类型(1.随手拍 2.微心愿) |
| | | */ |
| | | @Override |
| | | public void addHandleRecord(Long communityId, Long userId, Long serviceId, Integer type, Integer serviceType) { |
| | | public void addHandleRecord(Long communityId, Long userId, Long serviceId, Integer type, Integer serviceType,Long sponsorId) { |
| | | ComActEasyPhotoHandler easyPhotoHandler = new ComActEasyPhotoHandler(); |
| | | easyPhotoHandler.setCommunityId(communityId); |
| | | easyPhotoHandler.setStatus(ComActEasyPhotoHandler.Status.DZX); |
| | | easyPhotoHandler.setCreateTime(new Date()); |
| | | easyPhotoHandler.setUserId(userId); |
| | | easyPhotoHandler.setSenderId(sponsorId); |
| | | easyPhotoHandler.setServiceId(serviceId); |
| | | easyPhotoHandler.setType(type); |
| | | easyPhotoHandler.setServiceType(serviceType); |