Browse Source

Merge branch 'wn'

# Conflicts:
#	sstudy/src/main/resources/application.properties
tags/正式3.13.4^0
王宁 11 months ago
parent
commit
c3374e58a8

+ 1
- 1
gateway/src/main/resources/application.properties View File

@@ -126,4 +126,4 @@ whitelistAPI=user/login,user/loginstu,/class_student/stu_class,/user/detail,/sta
126 126
 
127 127
 #版本号
128 128
 buildnum=300
129
-versionname=Test_v3.13.2
129
+versionname=Test_v3.13.3

+ 1
- 1
sapi/src/main/resources/application.properties View File

@@ -103,4 +103,4 @@ ipregiondb=D:\\school\\ip2region.xdb
103 103
 
104 104
 #版本号
105 105
 buildnum=300
106
-versionname=Test_v3.13.2
106
+versionname=Test_v3.13.3

+ 1
- 1
sexam/src/main/resources/application.properties View File

@@ -104,5 +104,5 @@ ipregiondb=D:\\school\\ip2region.xdb
104 104
 
105 105
 #版本号
106 106
 buildnum=300
107
-versionname=Test_v3.13.0
107
+versionname=Test_v3.13.3
108 108
 

+ 1
- 1
slive/src/main/resources/application.properties View File

@@ -95,4 +95,4 @@ ipregiondb=D:\\school\\ip2region.xdb
95 95
 
96 96
 #版本号
97 97
 buildnum=300
98
-versionname=Test_v3.13.0
98
+versionname=Test_v3.13.3

+ 1
- 1
slog/src/main/resources/application.properties View File

@@ -69,4 +69,4 @@ ipregiondb=D:\\school\\ip2region.xdb
69 69
 
70 70
 #版本号
71 71
 buildnum=300
72
-versionname=Test_v3.13.0
72
+versionname=Test_v3.13.3

+ 2
- 2
sstudy/src/main/java/com/xhkjedu/sstudy/controller/resource/ResourceController.java View File

@@ -111,7 +111,7 @@ public class ResourceController {
111 111
     }
112 112
 
113 113
     /**
114
-     * @Description 分享伙伴校
114
+     * @Description 分享伙伴校(我的空间分享)
115 115
      * @Param [tResource]
116 116
      * @Author ywx
117 117
      * @Date 2023/7/21 9:34
@@ -152,7 +152,7 @@ public class ResourceController {
152 152
     }
153 153
 
154 154
     /**
155
-     * @Description 分享集团校
155
+     * @Description 分享集团校(校本资源模块分享)
156 156
      * @Date 2023/8/29 16:11
157 157
      * @Author YWX
158 158
      * @Param [tResource]

+ 16
- 0
sstudy/src/main/java/com/xhkjedu/sstudy/service/resource/ResourceService.java View File

@@ -379,6 +379,15 @@ public class ResourceService {
379 379
         List<TResourceDirector> directors = new ArrayList<>(groups.size());
380 380
         List<Integer> schoolIds = new ArrayList<>();//已分享过的学校集合
381 381
         try {
382
+            //2024-1-10分享到伙伴学校时同时分享到自己所在学校集团校 和 校本资源
383
+            Integer mySchoolid = vo.getSchoolid();
384
+            TGuideGroup myGroup = new TGuideGroup();
385
+            myGroup.setSchoolid(mySchoolid);
386
+            groups.add(myGroup);//分享到自己学校集团校
387
+
388
+            resource.setSchoolid(mySchoolid);
389
+            share(resource);//分享校本资源
390
+
382 391
             for (TGuideGroup g : groups) {
383 392
                 Integer schoolid = g.getSchoolid();
384 393
                 if (N_Utils.numInList(schoolid, schoolids)) {//已分享过的学校需更新试题时间
@@ -467,6 +476,13 @@ public class ResourceService {
467 476
         List<TResourceDirector> resourceDirectors = r.getDirectors();
468 477
         List<TResourceDirector> directors = new ArrayList<>();
469 478
         List<Integer> schoolIds = new ArrayList<>();//已分享过的学校集合
479
+
480
+        //2024-1-10分享到伙伴学校时同时分享到自己所在学校集团校 和 校本资源
481
+        Integer mySchoolid = r.getSchoolid();
482
+        TGuideGroup myGroup = new TGuideGroup();
483
+        myGroup.setSchoolid(mySchoolid);
484
+        groups.add(myGroup);//分享到自己学校集团校
485
+
470 486
         for (TGuideGroup group : groups) {
471 487
             Integer schoolid = group.getSchoolid();
472 488
             if (N_Utils.numInList(schoolid, schoolids)) {//已分享过的学校需更新资源时间

+ 1
- 1
suser/src/main/resources/application.properties View File

@@ -96,4 +96,4 @@ loginerrornum=3
96 96
 
97 97
 #版本号
98 98
 buildnum=300
99
-versionname=Test_v3.13.2
99
+versionname=Test_v3.13.3

Loading…
Cancel
Save