|
@@ -762,7 +762,7 @@ public class AuthApi {
|
|
|
* @return
|
|
|
*/
|
|
|
@GetMapping("/get/published/video/list")
|
|
|
- public ResponseJson<PageInfo<ChallengeRoundVo>> getPublishedVideoList(@CurrentUser SysUser sysUser, Integer status, String mobile, String authParty, Integer cursor, Integer count, @RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum,
|
|
|
+ public ResponseJson<PageInfo<ChallengeRoundVo>> getPublishedVideoList(@CurrentUser SysUser sysUser, Integer status, String userName, String authParty, Integer cursor, Integer count, @RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum,
|
|
|
@RequestParam(value = "pageSize", defaultValue = "10") Integer pageSize) {
|
|
|
if (null == sysUser) {
|
|
|
return ResponseJson.error("用户信息异常", null);
|
|
@@ -779,7 +779,7 @@ public class AuthApi {
|
|
|
if (cursor == null) {
|
|
|
cursor = 0;
|
|
|
}
|
|
|
- return authService.getPublishedVideo(mobile, authParty, status, cursor, count, authUserId, pageNum, pageSize);
|
|
|
+ return authService.getPublishedVideo(userName, authParty, status, cursor, count, authUserId, pageNum, pageSize);
|
|
|
}
|
|
|
|
|
|
/**
|