| | |
| | | package com.hz.his.feign.service.phis; |
| | | |
| | | import com.hx.resultTool.Result; |
| | | import com.hz.his.dto.user.UserAppointmentDto; |
| | | import com.hz.his.dto.user.UserDto; |
| | | import com.hz.his.dto.user.UserIdsDto; |
| | | import com.hz.his.dto.user.UserLevelDto; |
| | | import com.hz.his.dto.user.*; |
| | | import com.hz.his.dto.user.card.UserCardDto; |
| | | import com.hz.his.dto.user.card.UserCardUsedDto; |
| | | import com.hz.his.dto.user.coupon.GoodsCanUseCouponDto; |
| | | import com.hz.his.dto.user.coupon.GoodsUsedCouponDto; |
| | | import com.hz.his.dto.user.coupon.OrderCanUseCouponDto; |
| | | import com.hz.his.dto.user.coupon.UserCanUseCouponDto; |
| | | import com.hz.his.dto.user.coupon.UserCouponDto; |
| | | import com.hz.his.dto.user.money.*; |
| | | import com.hz.his.dto.user.label.UserLabelDto; |
| | | import com.hz.his.dto.user.packages.UserPackageDto; |
| | | import com.hz.his.dto.user.money.*; |
| | | import com.hz.his.dto.user.packages.UserPhisPackageDto; |
| | | import com.hz.his.dto.user.project.UserProjectDto; |
| | | import com.hz.his.dto.user.project.UserProjectUsedDto; |
| | |
| | | * */ |
| | | @PostMapping(value = "/user/list") |
| | | Result userList(@RequestBody UserDto userDto); |
| | | |
| | | /** |
| | | * 查询用户标识列表 |
| | | * */ |
| | | @PostMapping(value = "/user/list/ids") |
| | | Result userIdList(@RequestBody UserDto userDto); |
| | | |
| | | /** |
| | | * 获取到用户详情 |
| | |
| | | * 获取商品可用优惠券 |
| | | * */ |
| | | @PostMapping(value = "/goods/can/use/coupon") |
| | | Result goodsCanUseCoupon(@RequestBody GoodsCanUseCouponDto goodsCanUseCouponDto); |
| | | Result goodsCanUseCoupon(@RequestBody GoodsUsedCouponDto goodsUsedCouponDto); |
| | | |
| | | /** |
| | | * 判断订单是否可用该优惠券 |
| | | * 转化使用 CouponNumberDto |
| | | */ |
| | | @PostMapping(value = "/order/can/use/coupon") |
| | | Result orderCanUseCoupon(@RequestBody OrderCanUseCouponDto orderCanUseCouponDto); |
| | |
| | | |
| | | /** |
| | | * 获取用户拥有统计 |
| | | * 返回使用UserHaveDt |
| | | * */ |
| | | @PostMapping(value = "/user/have/count") |
| | | Result userHaveCount(@RequestParam("userId") String userId); |
| | | Result userHaveCount(@RequestBody UserHaveDto userHaveDto); |
| | | |
| | | |
| | | /** |
| | |
| | | @PostMapping(value = "/user/idList/list") |
| | | Result userIdSelectList(@RequestBody UserIdsDto userIdsDto); |
| | | |
| | | /**获取用户信息,短信模板专用 |
| | | * 获取根据id或者CIQ或者hisId查找用户 |
| | | * @param userDto 只使用id和CIQ |
| | | * @return 转化使用UserDt |
| | | */ |
| | | @PostMapping(value = "/user/sms-find") |
| | | Result userSms(@RequestBody UserDto userDto); |
| | | |
| | | /** |
| | | * 获取用户信息,导入人群包专用 |
| | | * 根据CIQ或者名称全匹配查找用户 |
| | | * @param userDto 只使用name和CIQ |
| | | * @return 转化使用UserDt |
| | | */ |
| | | @PostMapping(value = "/user/crowd/import") |
| | | Result userCrowdImport(@RequestBody UserDto userDto); |
| | | |
| | | |
| | | /** |
| | | * 获取用户子项目 |
| | | */ |
| | | @PostMapping(value = "/user/project/items") |
| | | Result findUserProjectItem(@RequestBody UserProjectDto userProjectDto); |
| | | |
| | | /** |
| | | * 获取到用户详情(同步使用) |
| | | * @param userId 用户标识 |
| | | * @return 转化使用UserDt |
| | | */ |
| | | @PostMapping(value = "/user/info/baseInfo") |
| | | Result userInfoBaseInfo(@RequestParam("userId") String userId); |
| | | |
| | | /** |
| | | * 判断用户是否是会员 |
| | | * @param userDto userId |
| | | * @return |
| | | */ |
| | | @PostMapping(value = "/user/check/member") |
| | | Result checkMember(@RequestBody UserDto userDto); |
| | | |
| | | /** |
| | | * 查询用户会员等级下一级 |
| | | * */ |
| | | @PostMapping(value = "/user/next/level") |
| | | Result nextLevel(@RequestBody UserDto userDto); |
| | | |
| | | /** |
| | | * 查询累计返佣 |
| | | * */ |
| | | @PostMapping(value = "/user/query/rebate") |
| | | Result queryRebate(@RequestBody UserDto userDto); |
| | | |
| | | /** |
| | | * 查询用户首天消费累计 |
| | | * */ |
| | | @PostMapping(value = "/user/first/day/consumption") |
| | | Result firstDayConsumption(@RequestBody UserDto userDto); |
| | | |
| | | /** |
| | | * 查询用户首天消费累计 |
| | | * */ |
| | | @PostMapping(value = "/user/accumulat/consumption") |
| | | Result accumulateConsumption(@RequestBody UserDto userDto); |
| | | } |