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.
12 lines
384 B
12 lines
384 B
package com.crm.preference.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.crm.preference.domain.entity.UserSavedView;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
* 用户自定义视图 Mapper(简单 CRUD,同 {@link UserColumnPreferenceMapper} 范式)。
|
|
*/
|
|
@Mapper
|
|
public interface UserSavedViewMapper extends BaseMapper<UserSavedView> {
|
|
}
|
|
|