虫情设备图片数据获取修改
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
package com.fastbee.iot.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
@ -19,6 +20,7 @@ import java.util.Date;
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ApiModel(value = "AlertLog", description = "设备告警日志实体 iot_alert_log")
|
||||
@TableName("iot_alert_log")
|
||||
public class AlertLog extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
@ -1,5 +1,6 @@
|
||||
package com.fastbee.iot.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.fastbee.iot.domain.AlertLog;
|
||||
import com.fastbee.iot.model.DeviceAlertCount;
|
||||
import com.fastbee.iot.model.AlertCountVO;
|
||||
@ -16,7 +17,7 @@ import java.util.List;
|
||||
* @date 2022-01-13
|
||||
*/
|
||||
@Repository
|
||||
public interface AlertLogMapper
|
||||
public interface AlertLogMapper extends BaseMapper<AlertLog>
|
||||
{
|
||||
/**
|
||||
* 查询设备告警
|
||||
|
Reference in New Issue
Block a user