zjh
2025-02-21 2c785c3d4513daea9deb5c7edbb17a9f17111d25
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> {
 
}