|
|
@@ -7,6 +7,7 @@ import com.cyksj.enums.GatewayResponse;
|
|
|
import com.cyksj.mapper.GroupsRelationMapper;
|
|
|
import com.cyksj.model.entity.Account;
|
|
|
import com.cyksj.model.entity.GroupsTrips;
|
|
|
+import com.cyksj.model.views.GroupsTripsWaitingView;
|
|
|
import com.cyksj.service.mange.CmsAccountService;
|
|
|
import com.cyksj.service.mange.CmsGoodsDonSkuService;
|
|
|
import com.cyksj.service.mange.CmsGroupService;
|
|
|
@@ -65,6 +66,14 @@ public class CmsGroupController {
|
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult(search);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 各平台待发车详情
|
|
|
+ */
|
|
|
+ @GetMapping("/get/plat/waiting")
|
|
|
+ public Result<List<GroupsTripsWaitingView>> getPlatWaiting() {
|
|
|
+ return GatewayResponse.SUCCESS.newBuilder().toResult(beanSearcher.searchAll(GroupsTripsWaitingView.class, null));
|
|
|
+ }
|
|
|
+
|
|
|
@PostMapping("/post")
|
|
|
@NoSubmit
|
|
|
public Result<GroupsTrips> add(@RequestBody GroupsTrips groups){
|