| | |
| | | import com.hz.his.dto.user.UserUnionDto; |
| | | import com.hz.his.dto.user.coupon.UserCouponDto; |
| | | import com.hz.his.dto.user.project.UserProjectDto; |
| | | import net.sf.json.JSONObject; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | @PostMapping(value = "/user/coupon/cancel") |
| | | Result cancelUserCoupon(@RequestBody UserCouponDto userCouponDto); |
| | | |
| | | /** 主动同步创建顾客到his - 会员等级*/ |
| | | @PostMapping("/user/sync/update/his/user/level") |
| | | Result updateMembership(@RequestBody JSONObject jsonObject); |
| | | |
| | | |
| | | } |