From 6b9d2b5154bd34fbb244b61682f1f7dafd9ab735 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期三, 08 九月 2021 21:20:38 +0800 Subject: [PATCH] 微心愿操作记录接口改版 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunityApi.java | 32 +++----------------------------- 1 files changed, 3 insertions(+), 29 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunityApi.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunityApi.java index 4de8fba..7e2c566 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunityApi.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunityApi.java @@ -11,6 +11,8 @@ import javax.annotation.Resource; +import com.panzhihua.service_community.model.dos.*; +import com.panzhihua.service_community.service.*; import org.springframework.beans.BeanUtils; import org.springframework.transaction.annotation.Transactional; import org.springframework.util.ObjectUtils; @@ -86,34 +88,6 @@ import com.panzhihua.service_community.dao.ComActActSignDAO; import com.panzhihua.service_community.dao.ComEldersAuthHistoryRecordMapper; import com.panzhihua.service_community.dao.ComMngPopulationDAO; -import com.panzhihua.service_community.model.dos.ComActActEvaluateDO; -import com.panzhihua.service_community.model.dos.ComActActPrizeDO; -import com.panzhihua.service_community.model.dos.ComActDynDO; -import com.panzhihua.service_community.model.dos.ComActEasyPhotoDO; -import com.panzhihua.service_community.model.dos.ComActMicroWishDO; -import com.panzhihua.service_community.model.dos.ComEldersAuthElderlyDO; -import com.panzhihua.service_community.model.dos.ComEldersAuthHistoryRecordDO; -import com.panzhihua.service_community.model.dos.ComEldersAuthUserDO; -import com.panzhihua.service_community.model.dos.ComMngStructAreaDO; -import com.panzhihua.service_community.model.dos.EldersAuthDO; -import com.panzhihua.service_community.service.ComActActEvaluateService; -import com.panzhihua.service_community.service.ComActActPrizeService; -import com.panzhihua.service_community.service.ComActActivityService; -import com.panzhihua.service_community.service.ComActDynService; -import com.panzhihua.service_community.service.ComActEasyPhotoActivityService; -import com.panzhihua.service_community.service.ComActEasyPhotoService; -import com.panzhihua.service_community.service.ComActMessageService; -import com.panzhihua.service_community.service.ComActMicroWishService; -import com.panzhihua.service_community.service.ComActQuestnaireService; -import com.panzhihua.service_community.service.ComActService; -import com.panzhihua.service_community.service.ComEldersAuthElderlyService; -import com.panzhihua.service_community.service.ComEldersAuthUserService; -import com.panzhihua.service_community.service.ComMngStructAreaDistrictService; -import com.panzhihua.service_community.service.ComMngStructAreaService; -import com.panzhihua.service_community.service.ComMngStructHouseService; -import com.panzhihua.service_community.service.ComMngStructOtherBuildService; -import com.panzhihua.service_community.service.ComMngVolunteerMngService; -import com.panzhihua.service_community.service.EldersAuthService; import cn.hutool.core.date.DateUtil; import cn.hutool.core.util.IdcardUtil; @@ -939,7 +913,7 @@ boolean save = comActMicroWishService.save(comActMicroWishDO); if (save) { wishOperationRecordService.addOperationRecord("用户提交微心愿",comActMicroWishVO.getSponsorId() - ,comActMicroWishDO.getId(),ComActMicroWishOperationRecordDO.type.ytj,"用户提交微心愿",null); + ,comActMicroWishDO.getId(), ComActMicroWishOperationRecordDO.type.ytj,"用户提交微心愿",null); return R.ok(); } return R.fail(); -- Gitblit v1.7.1