package cn.flightfeather.thirdapp.bean.entity;
|
|
import org.greenrobot.greendao.annotation.Entity;
|
import org.greenrobot.greendao.annotation.Generated;
|
import org.greenrobot.greendao.annotation.Id;
|
import org.greenrobot.greendao.annotation.Property;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* Created by note_ff_1602 on 2017/12/26.
|
*/
|
@Entity
|
public class Mediafile implements Serializable{
|
private static final long serialVersionUID = 3L;
|
@Id
|
private String guid;
|
@Property
|
private String iguid;
|
@Property
|
private String businessguid;
|
@Property
|
private Double longitude;
|
@Property
|
private Double latitude;
|
@Property
|
private String address;
|
@Property
|
private Integer filetype;
|
@Property
|
private Byte businesstypeid;
|
@Property
|
private String businesstype;
|
@Property
|
private String path;
|
@Property
|
private String description;
|
@Property
|
private Date savetime;
|
@Property
|
private Boolean ischanged;
|
@Property
|
private String extension1;
|
@Property
|
private String extension2;
|
@Property
|
private String extension3;
|
@Property
|
private String remark;
|
@Generated(hash = 1063505558)
|
public Mediafile(String guid, String iguid, String businessguid,
|
Double longitude, Double latitude, String address, Integer filetype,
|
Byte businesstypeid, String businesstype, String path,
|
String description, Date savetime, Boolean ischanged, String extension1,
|
String extension2, String extension3, String remark) {
|
this.guid = guid;
|
this.iguid = iguid;
|
this.businessguid = businessguid;
|
this.longitude = longitude;
|
this.latitude = latitude;
|
this.address = address;
|
this.filetype = filetype;
|
this.businesstypeid = businesstypeid;
|
this.businesstype = businesstype;
|
this.path = path;
|
this.description = description;
|
this.savetime = savetime;
|
this.ischanged = ischanged;
|
this.extension1 = extension1;
|
this.extension2 = extension2;
|
this.extension3 = extension3;
|
this.remark = remark;
|
}
|
@Generated(hash = 2007236790)
|
public Mediafile() {
|
}
|
public String getGuid() {
|
return this.guid;
|
}
|
public void setGuid(String guid) {
|
this.guid = guid;
|
}
|
public String getIguid() {
|
return this.iguid;
|
}
|
public void setIguid(String iguid) {
|
this.iguid = iguid;
|
}
|
public String getBusinessguid() {
|
return this.businessguid;
|
}
|
public void setBusinessguid(String businessguid) {
|
this.businessguid = businessguid;
|
}
|
public Double getLongitude() {
|
return this.longitude;
|
}
|
public void setLongitude(Double longitude) {
|
this.longitude = longitude;
|
}
|
public Double getLatitude() {
|
return this.latitude;
|
}
|
public void setLatitude(Double latitude) {
|
this.latitude = latitude;
|
}
|
public String getAddress() {
|
return this.address;
|
}
|
public void setAddress(String address) {
|
this.address = address;
|
}
|
public Integer getFiletype() {
|
return this.filetype;
|
}
|
public void setFiletype(Integer filetype) {
|
this.filetype = filetype;
|
}
|
public Byte getBusinesstypeid() {
|
return this.businesstypeid;
|
}
|
public void setBusinesstypeid(Byte businesstypeid) {
|
this.businesstypeid = businesstypeid;
|
}
|
public String getBusinesstype() {
|
return this.businesstype;
|
}
|
public void setBusinesstype(String businesstype) {
|
this.businesstype = businesstype;
|
}
|
public String getPath() {
|
return this.path;
|
}
|
public void setPath(String path) {
|
this.path = path;
|
}
|
public String getDescription() {
|
return this.description;
|
}
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
public Date getSavetime() {
|
return this.savetime;
|
}
|
public void setSavetime(Date savetime) {
|
this.savetime = savetime;
|
}
|
public Boolean getIschanged() {
|
return this.ischanged;
|
}
|
public void setIschanged(Boolean ischanged) {
|
this.ischanged = ischanged;
|
}
|
public String getExtension1() {
|
return this.extension1;
|
}
|
public void setExtension1(String extension1) {
|
this.extension1 = extension1;
|
}
|
public String getExtension2() {
|
return this.extension2;
|
}
|
public void setExtension2(String extension2) {
|
this.extension2 = extension2;
|
}
|
public String getExtension3() {
|
return this.extension3;
|
}
|
public void setExtension3(String extension3) {
|
this.extension3 = extension3;
|
}
|
public String getRemark() {
|
return this.remark;
|
}
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
|
}
|