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
package cn.flightfeather.thirdapp.bean.entity;
 
import org.greenrobot.greendao.annotation.Entity;
import org.greenrobot.greendao.annotation.Id;
import org.greenrobot.greendao.annotation.Property;
import org.greenrobot.greendao.annotation.Generated;
 
/**
 * @author riku
 * Date: 2020/12/21
 * 媒体文件类型别名
 */
@Entity
public class MediaTypeAlias {
    @Id(autoincrement = true)
    private Long id;
    @Property
    private int sceneTypeId;
    @Property
    private int typeId;
    @Property
    private String typeName;
    @Property
    private String alias;
    @Generated(hash = 626593863)
    public MediaTypeAlias(Long id, int sceneTypeId, int typeId, String typeName,
            String alias) {
        this.id = id;
        this.sceneTypeId = sceneTypeId;
        this.typeId = typeId;
        this.typeName = typeName;
        this.alias = alias;
    }
    @Generated(hash = 849869520)
    public MediaTypeAlias() {
    }
    public Long getId() {
        return this.id;
    }
    public void setId(long id) {
        this.id = id;
    }
    public int getSceneTypeId() {
        return this.sceneTypeId;
    }
    public void setSceneTypeId(int sceneTypeId) {
        this.sceneTypeId = sceneTypeId;
    }
    public int getTypeId() {
        return this.typeId;
    }
    public void setTypeId(int typeId) {
        this.typeId = typeId;
    }
    public String getTypeName() {
        return this.typeName;
    }
    public void setTypeName(String typeName) {
        this.typeName = typeName;
    }
    public String getAlias() {
        return this.alias;
    }
    public void setAlias(String alias) {
        this.alias = alias;
    }
    public void setId(Long id) {
        this.id = id;
    }
}