You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
3.7 KiB
Java
98 lines
3.7 KiB
Java
package com.nmgs.controller;
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
import com.nmgs.entity.WxUnBindApply;
|
|
import com.nmgs.entity.WxVehicleBind;
|
|
import com.nmgs.service.WxVehicleBindService;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
import javax.annotation.Resource;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* @author: shuguang
|
|
* @date: 2023年10月27日 14:46
|
|
* @description:
|
|
*/
|
|
@RestController
|
|
public class WxVehicleBindController {
|
|
@Resource
|
|
private WxVehicleBindService wxVehicleBindService;
|
|
|
|
@PostMapping("/WxVehicleBind/deleteDetailsInfo")
|
|
public Object deleteDetailsInfo(@RequestBody Map<String, Object> params) {
|
|
return wxVehicleBindService.deleteDetailsInfo(params);
|
|
}
|
|
@PostMapping("/WxVehicleBind/completeDetailsInfo")
|
|
public Object completeDetailsInfo(@RequestBody Map<String, Object> params) {
|
|
return wxVehicleBindService.completeDetailsInfo(params);
|
|
}
|
|
@PostMapping("/WxVehicleBind/queryDepositDetails")
|
|
public Object queryDepositDetails(@RequestBody Map<String, Object> params) {
|
|
return wxVehicleBindService.queryDepositDetails(params);
|
|
}
|
|
@PostMapping("/WxVehicleBind/commitPreTimes")
|
|
public Object commitPreTimes(@RequestBody Map<String, Object> params) {
|
|
return wxVehicleBindService.commitPreTimes(params);
|
|
}
|
|
@PostMapping("/WxVehicleBind/updateApproved")
|
|
public Object updateApproved(@RequestBody WxUnBindApply wx) {
|
|
return wxVehicleBindService.updateApproved(wx);
|
|
}
|
|
|
|
@PostMapping("/WxVehicleBind/queryWxName")
|
|
public Object queryWxName(@RequestBody Map<String, Object> params) {
|
|
return wxVehicleBindService.queryWxName(params);
|
|
}
|
|
|
|
@PostMapping("/WxVehicleBind/getVersionNumber")
|
|
public Object getVersionNumber() {
|
|
return wxVehicleBindService.getVersionNumber();
|
|
}
|
|
|
|
@PostMapping("/WxVehicleBind/getPage")
|
|
public IPage getPage(@RequestBody Map<String,Object> map) {
|
|
return wxVehicleBindService.getPage(map);
|
|
}
|
|
@PostMapping("/WxVehicleBind/getCarColorList")
|
|
public Object getCarColorList(@RequestBody Map<String, Object> params) {
|
|
return wxVehicleBindService.getCarColorList();
|
|
}
|
|
@PostMapping("/WxVehicleBind/getFreeTypeList")
|
|
public Object getFreeTypeList() {
|
|
return wxVehicleBindService.getFreeTypeList();
|
|
}
|
|
@PostMapping("/WxVehicleBind/getCarTypeList")
|
|
public Object getCarTypeList() {
|
|
return wxVehicleBindService.getCarTypeList();
|
|
}
|
|
@PostMapping("/WxVehicleBind/commitVehicleBind")
|
|
public Object commitVehicleBind(@RequestBody Map<String,Object> map ) {
|
|
return wxVehicleBindService.commitVehicleBind(map);
|
|
}
|
|
@PostMapping("/WxVehicleBind/deleteVehicleBind")
|
|
public Object deleteVehicleBind(@RequestBody List<WxVehicleBind> list) {
|
|
return wxVehicleBindService.deleteVehicleBind(list);
|
|
}
|
|
@PostMapping("/WxVehicleBind/isShowAdvanceFee")
|
|
public Object isShowAdvanceFee(@RequestBody Map<String,Object> map) {
|
|
return wxVehicleBindService.isShowAdvanceFee(map);
|
|
}
|
|
@PostMapping("/WxVehicleBind/queryImageList")
|
|
public Object queryImageList(@RequestBody Map<String,Object> map) {
|
|
return wxVehicleBindService.queryImageList(map);
|
|
}
|
|
|
|
@PostMapping("/WxVehicleBind/notPassed")
|
|
public Object notPassed(@RequestBody WxVehicleBind wxVehicleBind) {
|
|
return wxVehicleBindService.notPassed(wxVehicleBind);
|
|
}
|
|
@PostMapping("/WxVehicleBind/completeSetup")
|
|
public Object completeSetup(@RequestBody List<WxVehicleBind> list) {
|
|
return wxVehicleBindService.completeSetup(list);
|
|
}
|
|
}
|