made TV decoding work

This commit is contained in:
strawmanbobi
2019-02-05 20:46:35 +08:00
parent e89011649c
commit 622099acb9
2 changed files with 5 additions and 2 deletions

View File

@@ -1,6 +1,8 @@
package net.irext.decoder.model; package net.irext.decoder.model;
public class RemoteIndex { import java.io.Serializable;
public class RemoteIndex implements Serializable {
private Integer id; private Integer id;
private Integer categoryId; private Integer categoryId;
private String categoryName; private String categoryName;

View File

@@ -20,7 +20,8 @@ public class DecodeResponse extends ServiceResponse {
} }
public DecodeResponse() { public DecodeResponse() {
super(new Status());
this.entity = null;
} }
public int[] getEntity() { public int[] getEntity() {