|
@@ -3,6 +3,7 @@ package com.ym.mec.web.controller;
|
|
|
import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
|
|
|
+import com.ym.mec.common.entity.HttpResponseResult;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
|
@@ -78,4 +79,9 @@ public class ContractsController extends BaseController {
|
|
|
return succeed(contractService.queryPracticeCoursesContract(sysUser.getId(), courseSectionNum, startDate, endDate, fee));
|
|
|
}
|
|
|
|
|
|
+ @GetMapping("transferProduceContract")
|
|
|
+ public HttpResponseResult transferProduceContract(Integer userId,String musicGroupId){
|
|
|
+ contractService.transferProduceContract(userId,musicGroupId);
|
|
|
+ return succeed();
|
|
|
+ }
|
|
|
}
|