package com.yssh.service;
|
|
import com.yssh.entity.DictRecord;
|
|
import java.util.List;
|
|
/**
|
* 字典记录Service接口
|
*
|
* @author xingjinshuang@smartearth.cn
|
* @date 2023-02-06
|
*/
|
public interface IDictRecordService
|
{
|
|
/**
|
* 查询字典记录列表
|
*
|
* @param dictRecord 字典记录
|
* @return 字典记录集合
|
*/
|
public List<DictRecord> selectDictRecordList(DictRecord dictRecord);
|
|
/**
|
* 新增字典记录
|
*
|
* @param dictRecord 字典记录
|
* @return 结果
|
*/
|
public int insertDictRecord(DictRecord dictRecord);
|
|
/**
|
* 修改字典记录
|
*
|
* @param dictRecord 字典记录
|
* @return 结果
|
*/
|
//public int updateDictRecord(DictRecord dictRecord);
|
|
/**
|
* 批量删除字典记录
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
//public int deleteDictRecordByIds(String ids);
|
|
/**
|
* 删除字典记录信息
|
*
|
* @param id 字典记录ID
|
* @return 结果
|
*/
|
//public int deleteDictRecordById(Long id);
|
|
/**
|
* 创建字典记录信息表
|
*/
|
int createDictRecoTable();
|
|
}
|