Просмотр исходного кода

获取的数据变更为养号账号库

lqc 4 лет назад
Родитель
Сommit
b33f15f612

+ 3 - 6
src/main/java/com/mokamrp/privates/controller/pangu/FosterwxCashScheduleTaskListController.java

@@ -10,10 +10,7 @@ import com.mokamrp.privates.interceptor.AuthUser;
 import com.mokamrp.privates.mapper.pangu.pojo.FosterwxCashScheduleTaskList;
 import com.mokamrp.privates.mapper.pangu.pojo.FosterwxCashScheduleTaskMobile;
 import com.mokamrp.privates.mapper.pojo.User;
-import com.mokamrp.privates.service.pangu.FosterwxCashMobileService;
-import com.mokamrp.privates.service.pangu.FosterwxCashScheduleTaskListService;
-import com.mokamrp.privates.service.pangu.FosterwxCashScheduleTaskMobileService;
-import com.mokamrp.privates.service.pangu.FosterwxCashWorkwxTaskListService;
+import com.mokamrp.privates.service.pangu.*;
 import io.swagger.annotations.Api;
 import io.swagger.annotations.ApiOperation;
 import org.springframework.beans.factory.annotation.Autowired;
@@ -51,7 +48,7 @@ public class FosterwxCashScheduleTaskListController extends BaseController<Foste
     public FosterwxCashScheduleTaskMobileService fosterwxCashScheduleTaskMobileService;
 
     @Autowired
-    public FosterwxCashMobileService fosterwxCashMobileService;
+    public FosterwxMobileService fosterwxMobileService;
 
     /*
      * @fast
@@ -134,7 +131,7 @@ public class FosterwxCashScheduleTaskListController extends BaseController<Foste
 
         fosterwxCashScheduleTaskMobiles.forEach(fosterwxCashScheduleTaskMobile -> {
             fosterwxCashScheduleTaskMobile.setFosterwxCashScheduleTaskList(fosterwxCashScheduleTaskListService.getById(fosterwxCashScheduleTaskMobile.getTaskId()));
-            fosterwxCashScheduleTaskMobile.setFosterwxCashMobile(fosterwxCashMobileService.getById(fosterwxCashScheduleTaskMobile.getMobileId()));
+            fosterwxCashScheduleTaskMobile.setFosterwxMobile(fosterwxMobileService.getById(fosterwxCashScheduleTaskMobile.getMobileId()));
         });
 
         return AjaxResult.success(fosterwxCashScheduleTaskMobiles);

+ 9 - 9
src/main/java/com/mokamrp/privates/mapper/pangu/pojo/FosterwxCashScheduleTaskMobile.java

@@ -62,7 +62,7 @@ public class FosterwxCashScheduleTaskMobile extends Model<FosterwxCashScheduleTa
     private FosterwxCashScheduleTaskList fosterwxCashScheduleTaskList;
 
     @TableField(exist = false)
-    private FosterwxCashMobile fosterwxCashMobile;
+    private FosterwxMobile fosterwxMobile;
 
     @TableField(exist = false)
     private String ids;
@@ -149,14 +149,6 @@ public class FosterwxCashScheduleTaskMobile extends Model<FosterwxCashScheduleTa
         this.fosterwxCashScheduleTaskList = fosterwxCashScheduleTaskList;
     }
 
-    public FosterwxCashMobile getFosterwxCashMobile() {
-        return fosterwxCashMobile;
-    }
-
-    public void setFosterwxCashMobile(FosterwxCashMobile fosterwxCashMobile) {
-        this.fosterwxCashMobile = fosterwxCashMobile;
-    }
-
     public String getIds() {
         return ids;
     }
@@ -164,4 +156,12 @@ public class FosterwxCashScheduleTaskMobile extends Model<FosterwxCashScheduleTa
     public void setIds(String ids) {
         this.ids = ids;
     }
+
+    public FosterwxMobile getFosterwxMobile() {
+        return fosterwxMobile;
+    }
+
+    public void setFosterwxMobile(FosterwxMobile fosterwxMobile) {
+        this.fosterwxMobile = fosterwxMobile;
+    }
 }