You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
904 B
Java
41 lines
904 B
Java
package com.nmgs.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
import com.nmgs.entity.WhiteAccountText;
|
|
import com.nmgs.entity.WhiteCarnoDic;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
public interface IWhiteCarnoDicService {
|
|
/**
|
|
* 分页查自定义询白名单
|
|
* @param params
|
|
* @return
|
|
*/
|
|
Page<WhiteCarnoDic> getWhiteCarnoDicByPage(Map<String, Object> params);
|
|
|
|
/**
|
|
* 单条数据插入
|
|
* @param params
|
|
* @return
|
|
* @throws Exception
|
|
*/
|
|
int insertData(Map<String, Object> params) throws Exception;
|
|
|
|
/**
|
|
* 批量删除
|
|
* @param params
|
|
* @return
|
|
* @throws Exception
|
|
*/
|
|
int batchDelDatas(Object params) throws Exception;
|
|
|
|
/**
|
|
* 查询全部数据
|
|
* @param params
|
|
* @return
|
|
*/
|
|
List<WhiteCarnoDic> getWhiteCarnoDicList(Map<String, Object> params);
|
|
}
|