master
parent
2b31da281e
commit
8c2a7c6263
|
@ -2,6 +2,7 @@ package com.muyu.gen.mapper;
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
import com.muyu.gen.domain.GenTableColumn;
|
import com.muyu.gen.domain.GenTableColumn;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
@ -18,7 +19,7 @@ public interface GenTableColumnMapper extends BaseMapper<GenTableColumn> {
|
||||||
*
|
*
|
||||||
* @return 列信息
|
* @return 列信息
|
||||||
*/
|
*/
|
||||||
List<GenTableColumn> selectDbTableColumnsByName (String tableName);
|
List<GenTableColumn> selectDbTableColumnsByName (@Param("tableName") String tableName);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询业务字段列表
|
* 查询业务字段列表
|
||||||
|
@ -27,7 +28,7 @@ public interface GenTableColumnMapper extends BaseMapper<GenTableColumn> {
|
||||||
*
|
*
|
||||||
* @return 业务字段集合
|
* @return 业务字段集合
|
||||||
*/
|
*/
|
||||||
List<GenTableColumn> selectGenTableColumnListByTableId (Long tableId);
|
List<GenTableColumn> selectGenTableColumnListByTableId (@Param("tableId") Long tableId);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 新增业务字段
|
* 新增业务字段
|
||||||
|
|
|
@ -2,6 +2,7 @@ package com.muyu.gen.mapper;
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
import com.muyu.gen.domain.GenTable;
|
import com.muyu.gen.domain.GenTable;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
@ -52,7 +53,7 @@ public interface GenTableMapper extends BaseMapper<GenTable> {
|
||||||
*
|
*
|
||||||
* @return 业务信息
|
* @return 业务信息
|
||||||
*/
|
*/
|
||||||
GenTable selectGenTableById (Long id);
|
GenTable selectGenTableById (@Param("id") Long id);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询表名称业务信息
|
* 查询表名称业务信息
|
||||||
|
@ -61,7 +62,7 @@ public interface GenTableMapper extends BaseMapper<GenTable> {
|
||||||
*
|
*
|
||||||
* @return 业务信息
|
* @return 业务信息
|
||||||
*/
|
*/
|
||||||
GenTable selectGenTableByName (String tableName);
|
GenTable selectGenTableByName (@Param("tableName") String tableName);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 新增业务
|
* 新增业务
|
||||||
|
|
Loading…
Reference in New Issue