zhaowenxuan
2024-12-10 7e27dd7796c6a8b8b03ac0f135796fce8b65d5b5
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> {
 
}