|  |  |  | 
|---|
|  |  |  | public List<CoursePackagePaymentConfig> queryCoursePackagePaymentConfigList(@RequestBody Integer coursePackageId) { | 
|---|
|  |  |  | return coursePackagePaymentConfigService.list(new QueryWrapper<CoursePackagePaymentConfig>().eq("coursePackageId", coursePackageId)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 根据课时规格id获取价格配置 | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param | 
|---|
|  |  |  | * @return | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @ResponseBody | 
|---|
|  |  |  | @PostMapping("/coursePackagePaymentConfig/queryCoursePackagePaymentConfigList1") | 
|---|
|  |  |  | public List<CoursePackagePaymentConfig> queryCoursePackagePaymentConfigList1(@RequestBody Integer coursePackagePaymentConfigId) { | 
|---|
|  |  |  | return coursePackagePaymentConfigService. | 
|---|
|  |  |  | list(new QueryWrapper<CoursePackagePaymentConfig>() | 
|---|
|  |  |  | .eq("id", coursePackagePaymentConfigId)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|