|
@@ -50,7 +50,7 @@ public class TruckEscortController {
|
|
|
private CommonService commonService;
|
|
private CommonService commonService;
|
|
|
|
|
|
|
|
|
|
|
|
|
- @ApiOperation(value = "获取车辆押运员分页列表", notes = "必传参数:orgId")
|
|
|
|
|
|
|
+ @ApiOperation(value = "获取车辆押运员分页列表", notes = "必传参数:orgId选填参数:keyWord(查escortName,mobile)")
|
|
|
@PostMapping("/page_list")
|
|
@PostMapping("/page_list")
|
|
|
public Result list(@RequestBody PageParam<TruckEscortListParam> pageParam) {
|
|
public Result list(@RequestBody PageParam<TruckEscortListParam> pageParam) {
|
|
|
log.info("获取车辆押运员分页列表,调用/tms/truck_escort/page_list,参数:{}", JSON.toJSONString(pageParam));
|
|
log.info("获取车辆押运员分页列表,调用/tms/truck_escort/page_list,参数:{}", JSON.toJSONString(pageParam));
|
|
@@ -127,7 +127,7 @@ public class TruckEscortController {
|
|
|
@ApiOperation(value = "获取单个车辆押运员详情", notes = "必传参数:userId")
|
|
@ApiOperation(value = "获取单个车辆押运员详情", notes = "必传参数:userId")
|
|
|
@PostMapping("/get_one")
|
|
@PostMapping("/get_one")
|
|
|
public Result getOne(@RequestBody TruckEscort param) {
|
|
public Result getOne(@RequestBody TruckEscort param) {
|
|
|
- log.info("删除车辆押运员,调用/tms/truck_escort/delete,参数:{}", JSON.toJSONString(param));
|
|
|
|
|
|
|
+ log.info("删除车辆押运员,调用/tms/truck_escort/get_one,参数:{}", JSON.toJSONString(param));
|
|
|
if (param == null || param.getUserId() == null) {
|
|
if (param == null || param.getUserId() == null) {
|
|
|
return new Result<>(ErrCodeEnum.BAD_PARAM.getCode(), ErrCodeEnum.BAD_PARAM.getMessage());
|
|
return new Result<>(ErrCodeEnum.BAD_PARAM.getCode(), ErrCodeEnum.BAD_PARAM.getMessage());
|
|
|
}
|
|
}
|