| | |
| | | package com.ruoyi.generator.mapper; |
| | | |
| | | import com.ruoyi.common.core.page.BaseMapperPlus; |
| | | import com.baomidou.mybatisplus.annotation.InterceptorIgnore; |
| | | import com.ruoyi.common.mybatis.core.mapper.BaseMapperPlus; |
| | | import com.ruoyi.generator.domain.GenTableColumn; |
| | | |
| | | import java.util.List; |
| | |
| | | /** |
| | | * 业务字段 数据层 |
| | | * |
| | | * @author ruoyi |
| | | * @author Lion Li |
| | | */ |
| | | public interface GenTableColumnMapper extends BaseMapperPlus<GenTableColumn> { |
| | | @InterceptorIgnore(dataPermission = "true") |
| | | public interface GenTableColumnMapper extends BaseMapperPlus<GenTableColumnMapper, GenTableColumn, GenTableColumn> { |
| | | /** |
| | | * 根据表名称查询列信息 |
| | | * |
| | | * @param tableName 表名称 |
| | | * @return 列信息 |
| | | */ |
| | | public List<GenTableColumn> selectDbTableColumnsByName(String tableName); |
| | | List<GenTableColumn> selectDbTableColumnsByName(String tableName); |
| | | |
| | | } |