package com.whyc.mapper;
|
|
import com.whyc.dto.TableDTO;
|
import org.apache.ibatis.annotations.Update;
|
|
import java.util.List;
|
|
public interface ClearTableMapper{
|
|
void clearTable(List<TableDTO> tableList);
|
|
void dropTable(List<TableDTO> tableList);
|
|
List<TableDTO> findTableListLike(List<TableDTO> tableList);
|
|
List<TableDTO> findAllTables();
|
|
@Update("update db_battinf.tb_battinf set PublicKeyX = '',PublicKeyY = '',KeyID= '' where num !=0")
|
void clearColumn();
|
}
|