|  | @@ -1628,18 +1628,18 @@ public class PracticeGroupServiceImpl extends BaseServiceImpl<Long, PracticeGrou
 | 
	
		
			
				|  |  |          if (practiceGroup.getFirstCourseTime().before(activityStartDate)
 | 
	
		
			
				|  |  |                  || practiceGroup.getFirstCourseTime().after(activityEndDate)) {
 | 
	
		
			
				|  |  |              result.put("status", "APPLY_DATE_OVERFLOW");
 | 
	
		
			
				|  |  | -            result.put("info", "预约失败,陪练课的时间超出活动时间范围(2020-3-31之前),请重试。");
 | 
	
		
			
				|  |  | +            result.put("info", "预约失败,网管课的时间超出活动时间范围(2020-3-31之前),请重试。");
 | 
	
		
			
				|  |  |              return result;
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          if (practiceGroup.getSecondCourseTime().before(activityStartDate)
 | 
	
		
			
				|  |  |                  || practiceGroup.getSecondCourseTime().after(activityEndDate)) {
 | 
	
		
			
				|  |  |              result.put("status", "APPLY_DATE_OVERFLOW");
 | 
	
		
			
				|  |  | -            result.put("info", "预约失败,陪练课的时间超出活动时间范围(2020-3-31之前),请重试。");
 | 
	
		
			
				|  |  | +            result.put("info", "预约失败,网管课的时间超出活动时间范围(2020-3-31之前),请重试。");
 | 
	
		
			
				|  |  |              return result;
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          if (DateUtil.isSameDay(practiceGroup.getFirstCourseTime(), practiceGroup.getSecondCourseTime())) {
 | 
	
		
			
				|  |  |              result.put("status", "TWO_DATE_ON_ONE_DAY");
 | 
	
		
			
				|  |  | -            result.put("info", "预约失败,陪练课选择时间重复,请重试。");
 | 
	
		
			
				|  |  | +            result.put("info", "预约失败,网管课选择时间重复,请重试。");
 | 
	
		
			
				|  |  |              return result;
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -1680,13 +1680,13 @@ public class PracticeGroupServiceImpl extends BaseServiceImpl<Long, PracticeGrou
 | 
	
		
			
				|  |  |          if (allCourseDates.get(2).before(activityStartDate)
 | 
	
		
			
				|  |  |                  || allCourseDates.get(2).after(courseExpireDate)) {
 | 
	
		
			
				|  |  |              result.put("status", "APPLY_DATE_OVERFLOW");
 | 
	
		
			
				|  |  | -            result.put("info", "预约失败,陪练课的时间超出活动时间范围(2020-3-31之前),请重试。");
 | 
	
		
			
				|  |  | +            result.put("info", "预约失败,网管课的时间超出活动时间范围(2020-3-31之前),请重试。");
 | 
	
		
			
				|  |  |              return result;
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          if (allCourseDates.get(3).before(activityStartDate)
 | 
	
		
			
				|  |  |                  || allCourseDates.get(3).after(courseExpireDate)) {
 | 
	
		
			
				|  |  |              result.put("status", "APPLY_DATE_OVERFLOW");
 | 
	
		
			
				|  |  | -            result.put("info", "预约失败,陪练课的时间超出活动时间范围(2020-3-31之前),请重试。");
 | 
	
		
			
				|  |  | +            result.put("info", "预约失败,网管课的时间超出活动时间范围(2020-3-31之前),请重试。");
 | 
	
		
			
				|  |  |              return result;
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          allCourseDates.sort(Comparator.comparing(Date::getTime));
 | 
	
	
		
			
				|  | @@ -1698,7 +1698,7 @@ public class PracticeGroupServiceImpl extends BaseServiceImpl<Long, PracticeGrou
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |          if (applyTimes >= 1) {
 | 
	
		
			
				|  |  |              result.put("status", "IS_APPLIED");
 | 
	
		
			
				|  |  | -            result.put("info", "您已经完成陪练课预约,请勿重复预约。");
 | 
	
		
			
				|  |  | +            result.put("info", "您已经完成网管课预约,请勿重复预约。");
 | 
	
		
			
				|  |  |              return result;
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          applyTimes += 1;
 | 
	
	
		
			
				|  | @@ -2094,7 +2094,7 @@ public class PracticeGroupServiceImpl extends BaseServiceImpl<Long, PracticeGrou
 | 
	
		
			
				|  |  |      public Object findPracticeGroupCourseSchedules(PracticeGroupQueryInfo queryInfo) {
 | 
	
		
			
				|  |  |          PageInfo pageInfo = new PageInfo<>(queryInfo.getPage(), queryInfo.getRows());
 | 
	
		
			
				|  |  |          if (Objects.isNull(queryInfo.getPracticeId())) {
 | 
	
		
			
				|  |  | -            throw new BizException("请指定陪练课课程");
 | 
	
		
			
				|  |  | +            throw new BizException("请指定网管课课程");
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |          Map<String, Object> params = new HashMap<>();
 | 
	
	
		
			
				|  | @@ -2102,7 +2102,7 @@ public class PracticeGroupServiceImpl extends BaseServiceImpl<Long, PracticeGrou
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |          PracticeGroup practiceGroup = practiceGroupDao.get(queryInfo.getPracticeId());
 | 
	
		
			
				|  |  |          if (Objects.isNull(practiceGroup)) {
 | 
	
		
			
				|  |  | -            throw new BizException("指定的陪练课不存在");
 | 
	
		
			
				|  |  | +            throw new BizException("指定的网管课不存在");
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          List<CourseSchedule> dataList = courseScheduleDao.findGroupCourseSchedules(practiceGroup.getId(), GroupType.PRACTICE.getCode());
 | 
	
		
			
				|  |  |          int count = dataList.size();
 | 
	
	
		
			
				|  | @@ -2889,7 +2889,7 @@ public class PracticeGroupServiceImpl extends BaseServiceImpl<Long, PracticeGrou
 | 
	
		
			
				|  |  |                  studentPaymentOrder.setUpdateTime(now);
 | 
	
		
			
				|  |  |                  studentPaymentOrder.setOrganId(practiceGroupBuyParams.getOrganId());
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -                sysUserCashAccountService.updateBalance(practiceGroupBuyParams.getStudentId(), studentPaymentOrder.getExpectAmount().negate(),PlatformCashAccountDetailTypeEnum.PAY_FEE,"陪练课购买");
 | 
	
		
			
				|  |  | +                sysUserCashAccountService.updateBalance(practiceGroupBuyParams.getStudentId(), studentPaymentOrder.getExpectAmount().negate(),PlatformCashAccountDetailTypeEnum.PAY_FEE,"网管课购买");
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |                  this.orderCallback(studentPaymentOrder);
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -2899,7 +2899,7 @@ public class PracticeGroupServiceImpl extends BaseServiceImpl<Long, PracticeGrou
 | 
	
		
			
				|  |  |                  return BaseController.succeed(result);
 | 
	
		
			
				|  |  |              }else{
 | 
	
		
			
				|  |  |                  if (userCashAccount.getBalance().doubleValue() > 0) {
 | 
	
		
			
				|  |  | -                    sysUserCashAccountService.updateBalance(practiceGroupBuyParams.getStudentId(), userCashAccount.getBalance().negate(), PlatformCashAccountDetailTypeEnum.PAY_FEE, "陪练课购买");
 | 
	
		
			
				|  |  | +                    sysUserCashAccountService.updateBalance(practiceGroupBuyParams.getStudentId(), userCashAccount.getBalance().negate(), PlatformCashAccountDetailTypeEnum.PAY_FEE, "网管课购买");
 | 
	
		
			
				|  |  |                      amount = studentPaymentOrder.getExpectAmount().subtract(userCashAccount.getBalance());
 | 
	
		
			
				|  |  |                      studentPaymentOrder.setActualAmount(amount);
 | 
	
		
			
				|  |  |                      studentPaymentOrder.setBalancePaymentAmount(userCashAccount.getBalance());
 | 
	
	
		
			
				|  | @@ -2921,7 +2921,7 @@ public class PracticeGroupServiceImpl extends BaseServiceImpl<Long, PracticeGrou
 | 
	
		
			
				|  |  |                      orderNo,
 | 
	
		
			
				|  |  |                      baseApiUrl+"/api-student/studentOrder/notify",
 | 
	
		
			
				|  |  |                      baseApiUrl+"/api-student/studentOrder/paymentResult?orderNo=" + orderNo,
 | 
	
		
			
				|  |  | -                    "陪练课购买",
 | 
	
		
			
				|  |  | +                    "网管课购买",
 | 
	
		
			
				|  |  |                      practiceGroupBuyParams.getName(),
 | 
	
		
			
				|  |  |                      practiceGroupBuyParams.getStudentId(),
 | 
	
		
			
				|  |  |                      classFee,
 | 
	
	
		
			
				|  | @@ -2999,7 +2999,7 @@ public class PracticeGroupServiceImpl extends BaseServiceImpl<Long, PracticeGrou
 | 
	
		
			
				|  |  |              courseScheduleDao.updateGroupCourseLock(order.getMusicGroupId(),GroupType.PRACTICE,0);
 | 
	
		
			
				|  |  |          }else{
 | 
	
		
			
				|  |  |              if(Objects.nonNull(order.getBalancePaymentAmount())){
 | 
	
		
			
				|  |  | -                sysUserCashAccountService.updateBalance(order.getUserId(), order.getBalancePaymentAmount(), PlatformCashAccountDetailTypeEnum.REFUNDS, "陪练课购买失败");
 | 
	
		
			
				|  |  | +                sysUserCashAccountService.updateBalance(order.getUserId(), order.getBalancePaymentAmount(), PlatformCashAccountDetailTypeEnum.REFUNDS, "网管课购买失败");
 | 
	
		
			
				|  |  |              }
 | 
	
		
			
				|  |  |              studentPaymentOrderDao.update(order);
 | 
	
		
			
				|  |  |              PracticeGroup practiceGroup = practiceGroupDao.get(Long.valueOf(order.getMusicGroupId()));
 | 
	
	
		
			
				|  | @@ -3214,7 +3214,7 @@ public class PracticeGroupServiceImpl extends BaseServiceImpl<Long, PracticeGrou
 | 
	
		
			
				|  |  |                      orderNo,
 | 
	
		
			
				|  |  |                      baseApiUrl+"/api-student/studentOrder/notify",
 | 
	
		
			
				|  |  |                      baseApiUrl+"/api-student/studentOrder/paymentResult?orderNo=" + orderNo,
 | 
	
		
			
				|  |  | -                    "陪练课购买",
 | 
	
		
			
				|  |  | +                    "网管课购买",
 | 
	
		
			
				|  |  |                      practiceGroup.getName(),
 | 
	
		
			
				|  |  |                      practiceGroup.getStudentId(),
 | 
	
		
			
				|  |  |                      classFee,
 |