|
@@ -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 {
|
|
|
|
|
|
|