package com.ard.work.location_note.service;
|
|
import com.ard.work.location_note.domain.ArdLocationNote;
|
|
import java.util.List;
|
|
/**
|
* 注记Service接口
|
*
|
* @author ruoyi
|
* @date 2025-03-25
|
*/
|
public interface IArdLocationNoteService
|
{
|
/**
|
* 查询注记
|
*
|
* @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 areaIds 需要删除的注记主键集合
|
* @return 结果
|
*/
|
public int deleteArdLocationNoteByAreaIds(String[] areaIds);
|
|
/**
|
* 删除注记信息
|
*
|
* @param areaId 注记主键
|
* @return 结果
|
*/
|
public int deleteArdLocationNoteByAreaId(String areaId);
|
}
|