| | |
| | | package com.dsh.account.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.dsh.account.dto.BindDto; |
| | | import com.dsh.account.dto.SelectDto; |
| | | import com.dsh.account.dto.UpdateInfoDto; |
| | | import com.dsh.account.dto.UserInfoQueryDTO; |
| | | import com.dsh.account.entity.TAppUser; |
| | | import com.dsh.account.model.*; |
| | |
| | | */ |
| | | public interface TAppUserService extends IService<TAppUser> { |
| | | |
| | | ClassInfoVo queryUserOfStus(Integer id); |
| | | ClassInfoVo queryUserOfStus(Integer id,Integer uid); |
| | | |
| | | |
| | | /** |
| | |
| | | * @param appUserId |
| | | * @return |
| | | */ |
| | | IndexOfUserBenefirVo queryBenefitDetails(Integer appUserId); |
| | | IndexOfUserBenefirVo queryBenefitDetails(Integer appUserId,String lon,String lat); |
| | | |
| | | /** |
| | | * 获取用户账单列表 |
| | |
| | | ProductDetailsVo goodsDetailsOne(Integer goodId); |
| | | |
| | | |
| | | ResultUtil bind(BindDto dto); |
| | | |
| | | |
| | | ResultUtil<String> updateInfo(UpdateInfoDto dto,Integer uid); |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | List<QueryAppUserVO> listAll1(QueryAppUser query); |
| | | } |