【TDengine 使用环境】
测试环境
【TDengine 版本】
3.3.8.1
【操作系统以及版本】
debain 11
【部署方式】容器/非容器部署
非容器
【集群节点数】
0个
【集群副本数】
无
【描述业务影响】
测试insert操作没有问题,select查询报错
【问题复现路径/shan】做过哪些操作出现的问题
【遇到的问题:问题现象及影响】
insert操作没有问题,select查询报错
【资源配置】
package com.xtxk.modules.compress.domain;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
@Data
@TableName("ops_compress_task")
public class Task {
@TableField("ts")
private String ts;
@TableField("plan_id")
private Integer planId = 0;
@TableField("task_no")
private String taskNo;
@TableField("video_name")
private String videoName;
@TableField("video_path")
private String videoPath;
@TableField("video_size")
private Long videoSize;
@TableField("video_width")
private Integer videoWidth;
@TableField("video_height")
private Integer videoHeight;
@TableField("compress_path")
private String compressPath;
@TableField("compress_width")
private Integer compressWidth;
@TableField("compress_height")
private Integer compressHeight;
@TableField("compress_size")
private Long compressSize;
@TableField("compress_rate")
private String compressRate;
@TableField("start_time")
private String startTime;
@TableField("end_time")
private String endTime;
@TableField("task_progress")
private Double taskProgress;
/**
* 压缩状态 0 未开始 1 进行中 2 完成 3 失败
*/
@TableField("task_status")
private Integer taskStatus;
@TableField("upload_status")
private Integer uploadStatus;
@TableField("fail_reason")
private String failReason;
}
<select id="selectList" resultType="com.xtxk.modules.compress.domain.Task">
SELECT * FROM ops_compress_task
</select>
【报错完整截图】