app/src/main/java/cn/flightfeather/thirdapp/bean/entity/MediaTypeAlias.java
@@ -13,7 +13,7 @@
@Entity
public class MediaTypeAlias {
    @Id(autoincrement = true)
    private long id;
    private Long id;
    @Property
    private int sceneTypeId;
    @Property
@@ -22,8 +22,8 @@
    private String typeName;
    @Property
    private String alias;
    @Generated(hash = 1531076614)
    public MediaTypeAlias(long id, int sceneTypeId, int typeId, String typeName,
    @Generated(hash = 626593863)
    public MediaTypeAlias(Long id, int sceneTypeId, int typeId, String typeName,
            String alias) {
        this.id = id;
        this.sceneTypeId = sceneTypeId;
@@ -34,7 +34,7 @@
    @Generated(hash = 849869520)
    public MediaTypeAlias() {
    }
    public long getId() {
    public Long getId() {
        return this.id;
    }
    public void setId(long id) {
@@ -64,4 +64,7 @@
    public void setAlias(String alias) {
        this.alias = alias;
    }
    public void setId(Long id) {
        this.id = id;
    }
}