zjh
2024-06-20 7a4ef2968a0d5d28b2fedaaaec2227557fc9d420
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ltkj.tduck.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ltkj.tduck.domain.UserFormThemeEntity;
 
/**
 * 表单主题(UserFormTheme)表数据库访问层
 *
 * @author smalljop
 * @since 2020-11-25 13:36:31
 */
public interface UserFormThemeMapper extends BaseMapper<UserFormThemeEntity> {
 
}