15 lines
284 B
Java
15 lines
284 B
Java
package com.ai.da.mapper;
|
|
|
|
import com.ai.da.common.config.mybatis.plus.CommonMapper;
|
|
import com.ai.da.mapper.entity.UserLike;
|
|
|
|
/**
|
|
* Mapper 接口
|
|
*
|
|
* @author easy-generator
|
|
* @since 2022-06-13
|
|
*/
|
|
public interface UserLikeMapper extends CommonMapper<UserLike> {
|
|
|
|
}
|