【功能新增】IoT:设备分组的管理

This commit is contained in:
YunaiV 2024-12-14 17:00:58 +08:00
parent 9041de2da5
commit b143bc177f
8 changed files with 276 additions and 0 deletions

View File

@ -33,4 +33,7 @@ public interface ErrorCodeConstants {
// ========== 产品分类 1-050-004-000 ==========
ErrorCode PRODUCT_CATEGORY_NOT_EXISTS = new ErrorCode(1_050_004_000, "产品分类不存在");
// ========== 设备分组 1-050-005-000 ==========
ErrorCode DEVICE_GROUP_NOT_EXISTS = new ErrorCode(1_050_005_000, "设备分组不存在");
}

View File

@ -0,0 +1,27 @@
package cn.iocoder.yudao.module.iot.controller.admin.device.vo.group;
import cn.iocoder.yudao.framework.common.pojo.PageParam;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import org.springframework.format.annotation.DateTimeFormat;
import java.time.LocalDateTime;
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
@Schema(description = "管理后台 - IoT 设备分组分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class IotDeviceGroupPageReqVO extends PageParam {
@Schema(description = "分组名字", example = "李四")
private String name;
@Schema(description = "创建时间")
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
private LocalDateTime[] createTime;
}

View File

@ -0,0 +1,27 @@
package cn.iocoder.yudao.module.iot.controller.admin.device.vo.group;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.time.LocalDateTime;
@Schema(description = "管理后台 - IoT 设备分组 Response VO")
@Data
public class IotDeviceGroupRespVO {
@Schema(description = "分组 ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "3583")
private Long id;
@Schema(description = "分组名字", requiredMode = Schema.RequiredMode.REQUIRED, example = "李四")
private String name;
@Schema(description = "分组状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
private Integer status;
@Schema(description = "分组描述", example = "你说的对")
private String description;
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
private LocalDateTime createTime;
}

View File

@ -0,0 +1,26 @@
package cn.iocoder.yudao.module.iot.controller.admin.device.vo.group;
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotEmpty;
import jakarta.validation.constraints.NotNull;
import lombok.Data;
@Schema(description = "管理后台 - IoT 设备分组新增/修改 Request VO")
@Data
public class IotDeviceGroupSaveReqVO {
@Schema(description = "分组 ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "3583")
private Long id;
@Schema(description = "分组名字", requiredMode = Schema.RequiredMode.REQUIRED, example = "李四")
@NotEmpty(message = "分组名字不能为空")
private String name;
@Schema(description = "分组状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
@NotNull(message = "分组状态不能为空")
private Integer status;
@Schema(description = "分组描述", example = "你说的对")
private String description;
}

View File

@ -0,0 +1,44 @@
package cn.iocoder.yudao.module.iot.dal.dataobject.device;
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
import com.baomidou.mybatisplus.annotation.KeySequence;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.*;
/**
* IoT 设备分组 DO
*
* @author 芋道源码
*/
@TableName("iot_device_group")
@KeySequence("iot_device_group_seq") // 用于 OraclePostgreSQLKingbaseDB2H2 数据库的主键自增如果是 MySQL 等数据库可不写
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class IotDeviceGroupDO extends BaseDO {
/**
* 分组 ID
*/
@TableId
private Long id;
/**
* 分组名字
*/
private String name;
/**
* 分组状态
*
* 枚举 {@link cn.iocoder.yudao.framework.common.enums.CommonStatusEnum}
*/
private Integer status;
/**
* 分组描述
*/
private String description;
}

View File

@ -0,0 +1,25 @@
package cn.iocoder.yudao.module.iot.dal.mysql.device;
import cn.iocoder.yudao.framework.common.pojo.PageResult;
import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX;
import cn.iocoder.yudao.framework.mybatis.core.query.LambdaQueryWrapperX;
import cn.iocoder.yudao.module.iot.controller.admin.device.vo.group.IotDeviceGroupPageReqVO;
import cn.iocoder.yudao.module.iot.dal.dataobject.device.IotDeviceGroupDO;
import org.apache.ibatis.annotations.Mapper;
/**
* IoT 设备分组 Mapper
*
* @author 芋道源码
*/
@Mapper
public interface IotDeviceGroupMapper extends BaseMapperX<IotDeviceGroupDO> {
default PageResult<IotDeviceGroupDO> selectPage(IotDeviceGroupPageReqVO reqVO) {
return selectPage(reqVO, new LambdaQueryWrapperX<IotDeviceGroupDO>()
.likeIfPresent(IotDeviceGroupDO::getName, reqVO.getName())
.betweenIfPresent(IotDeviceGroupDO::getCreateTime, reqVO.getCreateTime())
.orderByDesc(IotDeviceGroupDO::getId));
}
}

View File

@ -0,0 +1,54 @@
package cn.iocoder.yudao.module.iot.service.device;
import cn.iocoder.yudao.framework.common.pojo.PageResult;
import cn.iocoder.yudao.module.iot.controller.admin.device.vo.group.IotDeviceGroupPageReqVO;
import cn.iocoder.yudao.module.iot.controller.admin.device.vo.group.IotDeviceGroupSaveReqVO;
import cn.iocoder.yudao.module.iot.dal.dataobject.device.IotDeviceGroupDO;
import jakarta.validation.Valid;
/**
* IoT 设备分组 Service 接口
*
* @author 芋道源码
*/
public interface IotDeviceGroupService {
/**
* 创建IoT 设备分组
*
* @param createReqVO 创建信息
* @return 编号
*/
Long createDeviceGroup(@Valid IotDeviceGroupSaveReqVO createReqVO);
/**
* 更新IoT 设备分组
*
* @param updateReqVO 更新信息
*/
void updateDeviceGroup(@Valid IotDeviceGroupSaveReqVO updateReqVO);
/**
* 删除IoT 设备分组
*
* @param id 编号
*/
void deleteDeviceGroup(Long id);
/**
* 获得IoT 设备分组
*
* @param id 编号
* @return IoT 设备分组
*/
IotDeviceGroupDO getDeviceGroup(Long id);
/**
* 获得IoT 设备分组分页
*
* @param pageReqVO 分页查询
* @return IoT 设备分组分页
*/
PageResult<IotDeviceGroupDO> getDeviceGroupPage(IotDeviceGroupPageReqVO pageReqVO);
}

View File

@ -0,0 +1,70 @@
package cn.iocoder.yudao.module.iot.service.device;
import cn.iocoder.yudao.framework.common.pojo.PageResult;
import cn.iocoder.yudao.framework.common.util.object.BeanUtils;
import cn.iocoder.yudao.module.iot.controller.admin.device.vo.group.IotDeviceGroupPageReqVO;
import cn.iocoder.yudao.module.iot.controller.admin.device.vo.group.IotDeviceGroupSaveReqVO;
import cn.iocoder.yudao.module.iot.dal.dataobject.device.IotDeviceGroupDO;
import cn.iocoder.yudao.module.iot.dal.mysql.device.IotDeviceGroupMapper;
import jakarta.annotation.Resource;
import org.springframework.stereotype.Service;
import org.springframework.validation.annotation.Validated;
import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception;
import static cn.iocoder.yudao.module.iot.enums.ErrorCodeConstants.DEVICE_GROUP_NOT_EXISTS;
/**
* IoT 设备分组 Service 实现类
*
* @author 芋道源码
*/
@Service
@Validated
public class IotDeviceGroupServiceImpl implements IotDeviceGroupService {
@Resource
private IotDeviceGroupMapper deviceGroupMapper;
@Override
public Long createDeviceGroup(IotDeviceGroupSaveReqVO createReqVO) {
// 插入
IotDeviceGroupDO deviceGroup = BeanUtils.toBean(createReqVO, IotDeviceGroupDO.class);
deviceGroupMapper.insert(deviceGroup);
// 返回
return deviceGroup.getId();
}
@Override
public void updateDeviceGroup(IotDeviceGroupSaveReqVO updateReqVO) {
// 校验存在
validateDeviceGroupExists(updateReqVO.getId());
// 更新
IotDeviceGroupDO updateObj = BeanUtils.toBean(updateReqVO, IotDeviceGroupDO.class);
deviceGroupMapper.updateById(updateObj);
}
@Override
public void deleteDeviceGroup(Long id) {
// 校验存在
validateDeviceGroupExists(id);
// 删除
deviceGroupMapper.deleteById(id);
}
private void validateDeviceGroupExists(Long id) {
if (deviceGroupMapper.selectById(id) == null) {
throw exception(DEVICE_GROUP_NOT_EXISTS);
}
}
@Override
public IotDeviceGroupDO getDeviceGroup(Long id) {
return deviceGroupMapper.selectById(id);
}
@Override
public PageResult<IotDeviceGroupDO> getDeviceGroupPage(IotDeviceGroupPageReqVO pageReqVO) {
return deviceGroupMapper.selectPage(pageReqVO);
}
}