| | |
| | | package com.yeshi.fanli.dao.mybatis.share;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | public interface SpreadUserImgMapper {
|
| | |
|
| | | List<String> getImgUrlList(Long uid);
|
| | |
|
| | | int imgUrlCount(Long uid);
|
| | |
|
| | | void deleteImgUrl(Long uid);
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.dao.mybatis.share; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.yeshi.fanli.dao.BaseMapper; |
| | | import com.yeshi.fanli.entity.bus.invite.SpreadUserImg; |
| | | |
| | | public interface SpreadUserImgMapper extends BaseMapper<SpreadUserImg> { |
| | | |
| | | List<String> getImgUrlList(Long uid); |
| | | |
| | | int imgUrlCount(Long uid); |
| | | |
| | | void deleteImgUrl(Long uid); |
| | | |
| | | /** |
| | | * 获取用户的推广图 |
| | | * |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | List<SpreadUserImg> listByUid(Long uid); |
| | | |
| | | } |