|
@@ -2336,7 +2336,7 @@ public class BatchController {
|
|
|
* @return
|
|
|
*/
|
|
|
@GetMapping(value = "/syncUserAppList")
|
|
|
- public Result<Object> syncUserAppList(Long userId, Integer type) {
|
|
|
+ public Result<Object> syncUserAppList(String userId, Integer type) {
|
|
|
if (Check.isNull(type) || Check.isNull(userId)) {
|
|
|
return Result.error("缺失参数");
|
|
|
}
|
|
@@ -2365,7 +2365,7 @@ public class BatchController {
|
|
|
* @return
|
|
|
*/
|
|
|
@GetMapping(value = "/syncUserPopulationList")
|
|
|
- public Result<Object> syncUserPopulationList(Long userId, Integer type) {
|
|
|
+ public Result<Object> syncUserPopulationList(String userId, Integer type) {
|
|
|
if (Check.isNull(type) || Check.isNull(userId)) {
|
|
|
return Result.error("缺失参数");
|
|
|
}
|