| | |
| | | package com.hz.his.feign.service.phis; |
| | | |
| | | import com.hx.resultTool.Result; |
| | | import com.hz.his.dto.coupon.CouponDto; |
| | | 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.*; |
| | | import com.hz.his.dto.user.money.*; |
| | | 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.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; |
| | |
| | | |
| | | /** |
| | | * 获取用户拥有统计 |
| | | * 返回使用Dt |
| | | * 返回使用UserHaveDt |
| | | * */ |
| | | @PostMapping(value = "/user/have/count") |
| | | Result userHaveCount(@RequestBody UserHaveDto userHaveDto); |
| | |
| | | @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); |
| | | } |