feat(pltcm): 新增设备启用状态管理功能

- 创建 ModDeviceEnable 实体类定义设备启用状态数据结构
- 实现 IModDeviceEnableService 接口及 ModDeviceEnableServiceImpl 业务逻辑
- 添加 ModDeviceEnableController 提供 REST API 接口支持增删改查操作
- 配置 ModDeviceEnableMapper 和 MyBatis XML 映射文件
- 定义 ModDeviceEnableBo 和 ModDeviceEnableVo 数据传输对象
- 集成 Excel 导出功能支持设备数据批量导出
- 实现分页查询、条件筛选和排序功能
This commit is contained in:
2026-07-06 17:34:25 +08:00
parent e42eac9115
commit 038e8544a0
8 changed files with 283 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package com.klp.pltcm.mapper;
import com.klp.pltcm.domain.ModDeviceEnable;
import com.klp.pltcm.domain.vo.ModDeviceEnableVo;
import com.klp.common.core.mapper.BaseMapperPlus;
public interface ModDeviceEnableMapper extends BaseMapperPlus<ModDeviceEnableMapper, ModDeviceEnable, ModDeviceEnableVo> {
}