TableLogDao.java 409 Bytes
Newer Older
谢恒's avatar
谢恒 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package com.hs.admin.dao;


import com.hs.admin.bean.TableLog;

public interface TableLogDao {
    int deleteByPrimaryKey(Integer id);

    int insert(TableLog record);

    int insertSelective(TableLog record);

    TableLog selectByPrimaryKey(Integer id);

    int updateByPrimaryKeySelective(TableLog record);

    int updateByPrimaryKey(TableLog record);

    TableLog findByTableName(String tableName);
}