燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2023-04-26 d254c34b538e190fd5a9355d757f64bd495bdda9
1
2
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.yssh.service;
 
import com.yssh.entity.DictRecord;
 
import java.util.Date;
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 ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteDictRecordByIds(Long[] ids);
 
    /**
     * 删除字典记录信息
     * @param id 字典记录ID
     * @return 结果
     */
    public int deleteDictRecordById(Long id);
 
    /**
     * 创建字典记录信息表
     */
    int createDictRecoTable();
}