From 00efb01d6b4f351c01928c349632100be01361b2 Mon Sep 17 00:00:00 2001 From: luofl <1442745593@qq.com> Date: 星期日, 16 三月 2025 14:28:09 +0800 Subject: [PATCH] 党员认证、党员上级角色切换 --- springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/controller/PartyMemberController.java | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/controller/PartyMemberController.java b/springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/controller/PartyMemberController.java index 1807e4c..96675a3 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/controller/PartyMemberController.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/controller/PartyMemberController.java @@ -12,6 +12,11 @@ import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import lombok.RequiredArgsConstructor; +import org.apache.poi.ss.usermodel.Cell; +import org.apache.poi.ss.usermodel.Row; +import org.apache.poi.ss.usermodel.Sheet; +import org.apache.poi.ss.usermodel.Workbook; +import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.springframework.context.annotation.Lazy; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.PostMapping; @@ -20,6 +25,8 @@ import org.springframework.web.bind.annotation.RestController; import javax.validation.Valid; +import java.io.FileOutputStream; +import java.io.IOException; import java.util.Objects; @Api(tags = {"小程序-党员管理"}) @@ -52,6 +59,8 @@ return R.ok(); } + + /** * 党员信息详情 */ -- Gitblit v1.7.1