| | |
| | | @ApiModelProperty(value = "订单状态") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty(value = "订单状态文案") |
| | | private String statusDesc; |
| | | |
| | | @ApiModelProperty(value = "状态提示文案") |
| | | private String tip; |
| | | |
| | |
| | | ActiveOrderTipVO vo = new ActiveOrderTipVO(); |
| | | vo.setOrderId(order.getId()); |
| | | vo.setStatus(order.getStatus()); |
| | | vo.setStatusDesc(Constants.OrderStatus.getDescByKey(order.getStatus(), order.getType())); |
| | | |
| | | // 构建提示文案 |
| | | boolean isLocal = Constants.equalsInteger(order.getType(), Constants.ZERO); |
| | |
| | | @ApiOperation("维护门店信息(支付押金后)") |
| | | @PostMapping("/maintain") |
| | | public ApiResponse maintain(@RequestBody ShopInfoMaintainDTO dto) { |
| | | shopInfoService.maintainShopInfo(this.getMemberId(), dto); |
| | | shopInfoService.maintainShopInfo(this.getShopId(), dto); |
| | | return ApiResponse.success("操作成功"); |
| | | } |
| | | |
| | |
| | | |
| | | spring: |
| | | profiles: |
| | | active: dev |
| | | active: pro |
| | | # JSON返回配置 |
| | | jackson: |
| | | # 默认时区 |