fix: 补上装置的通道ype属性用到的多个地方

dev
huangfeng 5 months ago
parent ea7c92bb46
commit 4697cc0d49

@ -18,6 +18,8 @@ public class TermChannelAndMapperDto {
private String alias; private String alias;
private Integer type;
private Integer status; private Integer status;
private Integer maxResolutionWidth; private Integer maxResolutionWidth;

@ -14,6 +14,8 @@ public class TerminalChannels implements Serializable {
private String alias; private String alias;
private Integer type;
private Integer maxResolutionWidth; private Integer maxResolutionWidth;
private Integer maxResolutionHeight; private Integer maxResolutionHeight;

@ -304,6 +304,7 @@
x.id as id, x.id as id,
x.term_id as termid, x.term_id as termid,
x.alias as alias, x.alias as alias,
x.type as type,
x.channel_id as channel_id, x.channel_id as channel_id,
y.channel_name as channel_name, y.channel_name as channel_name,
y.max_resolution_width as max_resolution_width, y.max_resolution_width as max_resolution_width,

@ -225,6 +225,7 @@ public class TerminalServiceImpl implements TerminalService {
terminalChannels1.setAlias(items.getAlias()); terminalChannels1.setAlias(items.getAlias());
terminalChannels1.setChannelName(items.getChannelname()); terminalChannels1.setChannelName(items.getChannelname());
terminalChannels1.setId(items.getChannelid()); terminalChannels1.setId(items.getChannelid());
terminalChannels1.setType(items.getType());
terminalChannels1.setMaxResolutionHeight(items.getMaxResolutionHeight()); terminalChannels1.setMaxResolutionHeight(items.getMaxResolutionHeight());
terminalChannels1.setMaxResolutionWidth(items.getMaxResolutionWidth()); terminalChannels1.setMaxResolutionWidth(items.getMaxResolutionWidth());
list1.add(terminalChannels1); list1.add(terminalChannels1);

Loading…
Cancel
Save