浏览代码

用户同步花名册数据

lizhenhao 2 年之前
父节点
当前提交
19acd714d1

+ 2 - 0
jeeplus-module/jeeplus-test/src/main/java/com/jeeplus/test/cw/projectReport/controller/CwProjectReportSignatureCallBackController.java

@@ -45,6 +45,7 @@ import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.data.redis.connection.jedis.JedisUtils;
 import org.springframework.http.ResponseEntity;
 import org.springframework.stereotype.Controller;
+import org.springframework.transaction.annotation.Transactional;
 import org.springframework.web.bind.annotation.*;
 import org.springframework.web.multipart.MultipartFile;
 import org.springframework.mock.web.MockMultipartFile;
@@ -62,6 +63,7 @@ import java.util.*;
  */
 @Controller
 @RequestMapping(value = "/cwProjectReport/signatureCallBack")
+@Transactional(rollbackFor = Exception.class)
 public class CwProjectReportSignatureCallBackController {