1
|
package org.thingsboard.server.dao.yunteng.entities;
|
1
|
package org.thingsboard.server.dao.yunteng.entities;
|
2
|
|
2
|
|
|
|
3
|
+import com.baomidou.mybatisplus.annotation.FieldStrategy;
|
|
|
4
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
3
|
import com.baomidou.mybatisplus.annotation.TableName;
|
5
|
import com.baomidou.mybatisplus.annotation.TableName;
|
4
|
import lombok.Data;
|
6
|
import lombok.Data;
|
5
|
import lombok.EqualsAndHashCode;
|
7
|
import lombok.EqualsAndHashCode;
|
|
@@ -13,21 +15,22 @@ import org.thingsboard.server.common.data.yunteng.constant.ModelConstants; |
|
@@ -13,21 +15,22 @@ import org.thingsboard.server.common.data.yunteng.constant.ModelConstants; |
13
|
@TableName(ModelConstants.Table.TK_VIDEO_STREAM_TABLE_NAME)
|
15
|
@TableName(ModelConstants.Table.TK_VIDEO_STREAM_TABLE_NAME)
|
14
|
public class TkVideoEntity extends TenantBaseEntity {
|
16
|
public class TkVideoEntity extends TenantBaseEntity {
|
15
|
|
17
|
|
|
|
18
|
+ private static final long serialVersionUID = 1498859811403607497L;
|
|
|
19
|
+ private String name;
|
|
|
20
|
+ private String additionalJson;
|
|
|
21
|
+ private String avatar;
|
|
|
22
|
+ private String videoUrl;
|
|
|
23
|
+ private String brand;
|
|
|
24
|
+ private String deviceType;
|
|
|
25
|
+ private String sn;
|
|
|
26
|
+ private String organizationId;
|
|
|
27
|
+ private Boolean status;
|
|
|
28
|
+ private String description;
|
|
|
29
|
+ private Integer accessMode;
|
|
|
30
|
+ private String videoPlatformId;
|
|
|
31
|
+ private Integer streamType;
|
|
|
32
|
+ private Integer playProtocol;
|
16
|
|
33
|
|
17
|
- private static final long serialVersionUID = 1498859811403607497L;
|
|
|
18
|
- private String name;
|
|
|
19
|
- private String additionalJson;
|
|
|
20
|
- private String avatar;
|
|
|
21
|
- private String videoUrl;
|
|
|
22
|
- private String brand;
|
|
|
23
|
- private String deviceType;
|
|
|
24
|
- private String sn;
|
|
|
25
|
- private String organizationId;
|
|
|
26
|
- private Boolean status;
|
|
|
27
|
- private String description;
|
|
|
28
|
- private Integer accessMode;
|
|
|
29
|
- private String videoPlatformId;
|
|
|
30
|
- private Integer streamType;
|
|
|
31
|
- private Integer playProtocol;
|
|
|
32
|
-
|
34
|
+ @TableField(updateStrategy = FieldStrategy.IGNORED)
|
|
|
35
|
+ private String remark;
|
33
|
} |
36
|
} |