You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
441 B
18 lines
441 B
|
2 weeks ago
|
package com.youlai.boot.mini.mapper;
|
||
|
|
|
||
|
|
import com.youlai.boot.mini.model.entity.MiniUserSubscribe;
|
||
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
import org.apache.ibatis.annotations.Select;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 用户订阅状态表 Mapper 接口
|
||
|
|
*
|
||
|
|
* @author jwy
|
||
|
|
* @since
|
||
|
|
*/
|
||
|
|
public interface MiniUserSubscribeMapper extends BaseMapper<MiniUserSubscribe> {
|
||
|
|
|
||
|
|
String getOpenidByUserId(Long aLong);
|
||
|
|
}
|