liusuyi
2026-05-18 b5cd784d0cde5b7c82ea78aef4ac0e5a161d8c5d
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
50
51
52
53
54
55
56
57
58
59
60
61
62
package com.ard.work.location_note.mapper;
 
import com.ard.work.location_note.domain.ArdLocationNote;
 
import java.util.List;
 
/**
 * 注记Mapper接口
 * 
 * @author ruoyi
 * @date 2025-03-25
 */
public interface ArdLocationNoteMapper 
{
    /**
     * 查询注记
     * 
     * @param areaId 注记主键
     * @return 注记
     */
    public ArdLocationNote selectArdLocationNoteByAreaId(String areaId);
 
    /**
     * 查询注记列表
     * 
     * @param ardLocationNote 注记
     * @return 注记集合
     */
    public List<ArdLocationNote> selectArdLocationNoteList(ArdLocationNote ardLocationNote);
 
    /**
     * 新增注记
     * 
     * @param ardLocationNote 注记
     * @return 结果
     */
    public int insertArdLocationNote(ArdLocationNote ardLocationNote);
 
    /**
     * 修改注记
     * 
     * @param ardLocationNote 注记
     * @return 结果
     */
    public int updateArdLocationNote(ArdLocationNote ardLocationNote);
 
    /**
     * 删除注记
     * 
     * @param areaId 注记主键
     * @return 结果
     */
    public int deleteArdLocationNoteByAreaId(String areaId);
 
    /**
     * 批量删除注记
     * 
     * @param areaIds 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteArdLocationNoteByAreaIds(String[] areaIds);
}