TableFieldDao.java 553 Bytes
Newer Older
wanmin@bu2.cn's avatar
wanmin@bu2.cn committed
1
/**
wanmin@bu2.cn's avatar
wanmin@bu2.cn committed
2
 * Copyright (c) 2020  All rights reserved.
wanmin@bu2.cn's avatar
wanmin@bu2.cn committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
 * <p>
 *
 * <p>
 *
 */

package com.roo.dao;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.roo.entity.TableFieldEntity;
import org.apache.ibatis.annotations.Mapper;

import java.util.List;

/**
 * 表
 *
 * @author Mark sunlightcs@gmail.com
 */
@Mapper
public interface TableFieldDao extends BaseMapper<TableFieldEntity> {

    List<TableFieldEntity> getByTableName(String tableName);

    void deleteByTableName(String tableName);

    void deleteBatchTableIds(Long[] tableIds);
}