feige
2024-10-07 f57c5b200b97a01738ace0cfa06e991ee4c01460
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.domain.ZfPetNote;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * <p>
 * 魅宠备忘录 Mapper 接口
 * </p>
 *
 * @author ojq
 * @since 2023-03-12
 */
@Mapper
public interface ZfPetNoteMapper extends BaseMapper<ZfPetNote> {
 
}