|
@@ -87,6 +87,7 @@ public class UserLogic {
|
|
|
private final PgOrderBaseService pgOrderBaseService;
|
|
|
private final PgOrderWorkerService pgOrderWorkerService;
|
|
|
private final SettleDailyBankAccountService settleDailyBankAccountService;
|
|
|
+ private final WebsitUserLogService websitUserLogService;
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -1115,4 +1116,9 @@ public class UserLogic {
|
|
|
userDetail.setWorkerImgs(workerImgs);
|
|
|
return userDetail;
|
|
|
}
|
|
|
+
|
|
|
+ public List<WebsitUserLog> listLog(String id) {
|
|
|
+
|
|
|
+ return websitUserLogService.lambdaQuery().eq(WebsitUserLog::getWebsitUserId,id).list();
|
|
|
+ }
|
|
|
}
|