third commit by ailanyin
This commit is contained in:
@ -0,0 +1,33 @@
|
||||
package com.ailanyin.mapper;
|
||||
|
||||
import com.ailanyin.model.HxTableConfig;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author ailanyin
|
||||
* @version 1.0
|
||||
* @since 2022-03-08 09:18:14
|
||||
*/
|
||||
@Mapper
|
||||
public interface HxTableConfigMapper{
|
||||
|
||||
/**
|
||||
* 查询
|
||||
*
|
||||
* @param tableName tableName
|
||||
* @return String
|
||||
*/
|
||||
String selectByTableName(String tableName);
|
||||
|
||||
/**
|
||||
* 修改
|
||||
*
|
||||
* @param hxTableConfig hxTableConfig
|
||||
*/
|
||||
void updateByTableName(HxTableConfig hxTableConfig);
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user