| | |
| | | private String technicianName; |
| | | |
| | | @ApiModelProperty(value = "预约单id") |
| | | private Long technicianSubscribeId; |
| | | private String technicianSubscribeId; |
| | | |
| | | } |
| | |
| | | orderDetailVO.setLatitude(shop.getLatitude()); |
| | | orderDetailVO.setShopId(shop.getId()); |
| | | orderDetailVO.setTechnicianName(technician.getName()); |
| | | orderDetailVO.setTechnicianSubscribeId(subscribe.getId()); |
| | | orderDetailVO.setTechnicianSubscribeId(String.valueOf(subscribe.getId())); |
| | | return orderDetailVO; |
| | | } |
| | | |
| | |
| | | */ |
| | | @GetMapping("/list") |
| | | @ApiOperation(value = "预约列表", notes = "预约列表", tags = {"小程序-个人中心-门店管理-预约列表"}) |
| | | public TableDataInfo<TechnicianSubscribeVO> list(@ApiParam(value = "状态") @RequestParam Integer status, |
| | | public TableDataInfo<TechnicianSubscribeVO> list(@ApiParam(value = "状态") Integer status, |
| | | @ApiParam(value = "门店id") @RequestParam Long shopId) { |
| | | startPage(); |
| | | List<TechnicianSubscribeVO> list = technicianSubscribeService |