LogicalClusterDao.java 486 字节
Newer Older
Z
zengqiao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
package com.xiaojukeji.kafka.manager.dao;

import com.xiaojukeji.kafka.manager.common.entity.pojo.*;

import java.util.List;

/**
 * @author zengqiao
 * @date 20/6/28
 */
public interface LogicalClusterDao {
    int insert(LogicalClusterDO logicalClusterDO);

    int deleteById(Long id);

    int updateById(LogicalClusterDO logicalClusterDO);

    LogicalClusterDO getById(Long id);

    List<LogicalClusterDO> getByClusterId(Long clusterId);

    List<LogicalClusterDO> listAll();
}