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; } }