|
|
@ -1,7 +1,6 @@ |
|
|
|
package awesome.group.game.web.rest.matrix; |
|
|
|
|
|
|
|
import awesome.group.game.dao.bean.MatrixEvilApp; |
|
|
|
import awesome.group.game.dao.bean.MatrixMockSchedule; |
|
|
|
import awesome.group.game.dao.bean.MatrixMockScheduleV2; |
|
|
|
import awesome.group.game.service.bo.AddMockScheduleReq; |
|
|
|
import awesome.group.game.service.bo.matrix.WhiteUserBo; |
|
|
@ -10,7 +9,6 @@ import awesome.group.game.service.matrix.SuperAdminService; |
|
|
|
import awesome.group.game.service.pay.AlipayFundTransUniTransfer; |
|
|
|
import awesome.group.game.web.RequestContext; |
|
|
|
import awesome.group.game.web.aop.RestApi; |
|
|
|
import io.swagger.v3.oas.annotations.Hidden; |
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
@ -68,6 +66,13 @@ public class SuperAdminController { |
|
|
|
return new R<>(null); |
|
|
|
} |
|
|
|
|
|
|
|
@PostMapping("/changeInnerUserStatus") |
|
|
|
@RestApi |
|
|
|
public R<Void> changeInnerUserStatus(@RequestParam Integer userId, @RequestParam int status) { |
|
|
|
superAdminService.changeInnerUser(userId, status); |
|
|
|
return new R<>(null); |
|
|
|
} |
|
|
|
|
|
|
|
@PostMapping("/transfer") |
|
|
|
@RestApi |
|
|
|
public R<Void> transfer(@RequestParam String name, @RequestParam String aliAccount, @RequestParam String appCode) { |
|
|
|