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.FormThemeEntity;
 
/**
 * 表单主题外观模板(FormTheme)表数据库访问层
 *
 * @author smalljop
 * @since 2020-11-23 18:33:54
 */
public interface FormThemeMapper extends BaseMapper<FormThemeEntity> {
 
}