Commit a5b792d7 by huluobin

update

parent 8b98471a
...@@ -8,8 +8,8 @@ import com.gogirl.infrastructure.common.exception.RRException; ...@@ -8,8 +8,8 @@ import com.gogirl.infrastructure.common.exception.RRException;
*/ */
public class SessionUtils { public class SessionUtils {
public static final String technician="technician"; public static final String technician = "technician";
public static final String customer="techncustomerician"; public static final String customer = "customer";
/*美甲师会话线程变量*/ /*美甲师会话线程变量*/
private static final ThreadLocal<GogirlToken> technicianTokenThreadLocal = new ThreadLocal<>(); private static final ThreadLocal<GogirlToken> technicianTokenThreadLocal = new ThreadLocal<>();
......
...@@ -70,6 +70,7 @@ public class MallOrderController { ...@@ -70,6 +70,7 @@ public class MallOrderController {
@ApiOperation("用户端查看我的订单列表") @ApiOperation("用户端查看我的订单列表")
@PostMapping("/customer/mallOrder/listMallOrderAggregate") @PostMapping("/customer/mallOrder/listMallOrderAggregate")
public JsonResult<IPage<MallOrder>> listMallOrderAggregate(@RequestBody ListMallOrderRequest request) { public JsonResult<IPage<MallOrder>> listMallOrderAggregate(@RequestBody ListMallOrderRequest request) {
IPage<MallOrder> data = mallOrderService.listMallOrderAggregate(request); IPage<MallOrder> data = mallOrderService.listMallOrderAggregate(request);
return JsonResult.success(data); return JsonResult.success(data);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment