zhaowenxuan
2025-04-30 aacaa3d2daafbd97ab008908b9f2fe9ed6c1f713
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ltkj.tduck.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ltkj.tduck.domain.UserFormLogicEntity;
 
/**
 * 用户表单逻辑表(UserFormLogic)表数据库访问层
 *
 * @author smalljop
 * @since 2020-11-18 18:16:17
 */
public interface UserFormLogicMapper extends BaseMapper<UserFormLogicEntity> {
 
}