Parcourir la source

加入退款原因2

小么熊🐻 il y a 2 ans
Parent
commit
1f2a3de1a9

+ 1 - 1
jsjp-service/src/main/java/com/miaxis/newgzpt/mapper/GzptSchActivationMapper.java

@@ -19,5 +19,5 @@ public interface GzptSchActivationMapper extends BaseMapper<GzptSchActivation> {
 
     GzptSchActivation getSchActivation(Long stuId);
 
-    void delSchActivation(Long stuId);
+    void delSchActivationByStuId(Long stuId);
 }

+ 1 - 1
jsjp-service/src/main/java/com/miaxis/newgzpt/service/IGzptSchActivationService.java

@@ -20,5 +20,5 @@ public interface IGzptSchActivationService extends IService<GzptSchActivation> {
 
     int isSchActivation(Long stuId);
 
-    void delSchActivation(Long stuId);
+    void delSchActivationByStuId(Long stuId);
 }

+ 2 - 2
jsjp-service/src/main/java/com/miaxis/newgzpt/service/impl/GzptSchActivationServiceImpl.java

@@ -47,7 +47,7 @@ public class GzptSchActivationServiceImpl extends ServiceImpl<GzptSchActivationM
     }
 
     @Override
-    public void delSchActivation(Long stuId) {
-        mapper.delSchActivation(stuId);
+    public void delSchActivationByStuId(Long stuId) {
+        mapper.delSchActivationByStuId(stuId);
     }
 }

+ 1 - 1
jsjp-service/src/main/java/com/miaxis/order/service/impl/OrderInfoServiceImpl.java

@@ -1819,7 +1819,7 @@ public class OrderInfoServiceImpl extends ServiceImpl<OrderInfoMapper, OrderInfo
     }
 
     private void delActiva(Long stuId) {
-        schActivationService.delSchActivation(stuId);
+        schActivationService.delSchActivationByStuId(stuId);
     }
 
 }

+ 0 - 1
jsjp-service/src/main/resources/mapper/newgzpt/GzptSchActivationMapper.xml

@@ -29,5 +29,4 @@
     </delete>
 
 
-
 </mapper>