代码规范修改

This commit is contained in:
jjLv 2024-04-09 18:19:38 +08:00
parent 90d806994a
commit 7db013b954
2 changed files with 57 additions and 0 deletions

View File

@ -164,4 +164,34 @@ public interface ISelectMapper {
* @date 2024/4/2 14:12
*/
List<SelectVo> getSignProList(SelectDto dto);
/**
* 围栏类型下拉选
*
* @return AjaxResult
* @description
* @author jjLv
* @date 2024/4/2 14:11
*/
List<SelectVo> getRailLists();
/**
* 报警下拉选
*
* @return AjaxResult
* @description
* @author jjLv
* @date 2024/4/2 14:11
*/
List<SelectVo> getGiveAnAlarmLists();
/**
* 警戒等级下拉选
*
* @return AjaxResult
* @description
* @author jjLv
* @date 2024/4/2 14:11
*/
List<SelectVo> getGuardAgainstLists();
}

View File

@ -177,4 +177,31 @@ public interface ISelectService {
* @date 2024/4/2 14:11
*/
AjaxResult getSignProList(SelectDto dto);
/**
* 围栏类型下拉选
* @return AjaxResult
* @description
* @author jjLv
* @date 2024/4/2 14:11
*/
AjaxResult getRailLists();
/**
* 报警下拉选
* @return AjaxResult
* @description
* @author jjLv
* @date 2024/4/2 14:11
*/
AjaxResult getGiveAnAlarmLists();
/**
* 警戒等级下拉选
* @return AjaxResult
* @description
* @author jjLv
* @date 2024/4/2 14:11
*/
AjaxResult getGuardAgainstLists();
}