Task.java
3.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
package com.viontech.fanxing.commons.model;
import com.viontech.fanxing.commons.base.BaseModel;
import java.util.Date;
public class Task extends BaseModel {
private Long id;
private String unid;
private String name;
private String algType;
private Float resourceNeed;
private Integer priority;
private Long storeConfigId;
private String vaType;
private Integer runtimeType;
private String deviceUnid;
private String channelUnid;
private String streamPath;
private Integer streamType;
private Date createTime;
private Integer status;
private String algEnabled;
private String runtimeConf;
private String scene;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getUnid() {
return unid;
}
public void setUnid(String unid) {
this.unid = unid == null ? null : unid.trim();
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name == null ? null : name.trim();
}
public String getAlgType() {
return algType;
}
public void setAlgType(String algType) {
this.algType = algType == null ? null : algType.trim();
}
public Float getResourceNeed() {
return resourceNeed;
}
public void setResourceNeed(Float resourceNeed) {
this.resourceNeed = resourceNeed;
}
public Integer getPriority() {
return priority;
}
public void setPriority(Integer priority) {
this.priority = priority;
}
public Long getStoreConfigId() {
return storeConfigId;
}
public void setStoreConfigId(Long storeConfigId) {
this.storeConfigId = storeConfigId;
}
public String getVaType() {
return vaType;
}
public void setVaType(String vaType) {
this.vaType = vaType == null ? null : vaType.trim();
}
public Integer getRuntimeType() {
return runtimeType;
}
public void setRuntimeType(Integer runtimeType) {
this.runtimeType = runtimeType;
}
public String getDeviceUnid() {
return deviceUnid;
}
public void setDeviceUnid(String deviceUnid) {
this.deviceUnid = deviceUnid == null ? null : deviceUnid.trim();
}
public String getChannelUnid() {
return channelUnid;
}
public void setChannelUnid(String channelUnid) {
this.channelUnid = channelUnid == null ? null : channelUnid.trim();
}
public String getStreamPath() {
return streamPath;
}
public void setStreamPath(String streamPath) {
this.streamPath = streamPath == null ? null : streamPath.trim();
}
public Integer getStreamType() {
return streamType;
}
public void setStreamType(Integer streamType) {
this.streamType = streamType;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public String getAlgEnabled() {
return algEnabled;
}
public void setAlgEnabled(String algEnabled) {
this.algEnabled = algEnabled == null ? null : algEnabled.trim();
}
public String getRuntimeConf() {
return runtimeConf;
}
public void setRuntimeConf(String runtimeConf) {
this.runtimeConf = runtimeConf == null ? null : runtimeConf.trim();
}
public String getScene() {
return scene;
}
public void setScene(String scene) {
this.scene = scene == null ? null : scene.trim();
}
}