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 java.io.Serializable;
|
import java.util.Date;
|
import org.greenrobot.greendao.annotation.Generated;
|
|
/**
|
* Created by note_ff_1602 on 2017/12/26.
|
*/
|
@Entity
|
public class Inspection implements Serializable {
|
private static final long serialVersionUID = 12L;
|
@Id
|
private String guid;
|
@Property
|
private String stguid;
|
@Property
|
private String sguid;
|
@Property
|
private String scensename;
|
@Property
|
private String scenseaddress;
|
@Property
|
private Boolean istogether;
|
@Property
|
private String entouraget;
|
@Property
|
private String entouragewx;
|
@Property
|
private String entourage;
|
@Property
|
private Date executionstarttime;
|
@Property
|
private Date executionendtime;
|
@Property
|
private Integer problemcount;
|
@Property
|
private Boolean isrechecked;
|
@Property
|
private Integer recheckcount;
|
@Property
|
private Integer promissednum;
|
@Property
|
private Integer changednum;
|
@Property
|
private Boolean ischanged;
|
@Property
|
private Boolean isrvaluated;
|
@Property
|
private Boolean ispromissed;
|
@Property
|
private Date promissedtime;
|
@Property
|
private String promisseduserguid;
|
@Property
|
private String promissedusername;
|
@Property
|
private String promisseduserrealname;
|
@Property
|
private String promissedway;
|
@Property
|
private Date promisseddeadline;
|
@Property
|
private String promissbookpath;
|
@Property
|
private String signpath;
|
@Property
|
private String extension1;
|
@Property
|
private String extension2;
|
@Property
|
private String extension3;
|
@Property
|
private String remark;
|
@Generated(hash = 857521794)
|
public Inspection(String guid, String stguid, String sguid, String scensename,
|
String scenseaddress, Boolean istogether, String entouraget,
|
String entouragewx, String entourage, Date executionstarttime,
|
Date executionendtime, Integer problemcount, Boolean isrechecked,
|
Integer recheckcount, Integer promissednum, Integer changednum,
|
Boolean ischanged, Boolean isrvaluated, Boolean ispromissed,
|
Date promissedtime, String promisseduserguid, String promissedusername,
|
String promisseduserrealname, String promissedway,
|
Date promisseddeadline, String promissbookpath, String signpath,
|
String extension1, String extension2, String extension3,
|
String remark) {
|
this.guid = guid;
|
this.stguid = stguid;
|
this.sguid = sguid;
|
this.scensename = scensename;
|
this.scenseaddress = scenseaddress;
|
this.istogether = istogether;
|
this.entouraget = entouraget;
|
this.entouragewx = entouragewx;
|
this.entourage = entourage;
|
this.executionstarttime = executionstarttime;
|
this.executionendtime = executionendtime;
|
this.problemcount = problemcount;
|
this.isrechecked = isrechecked;
|
this.recheckcount = recheckcount;
|
this.promissednum = promissednum;
|
this.changednum = changednum;
|
this.ischanged = ischanged;
|
this.isrvaluated = isrvaluated;
|
this.ispromissed = ispromissed;
|
this.promissedtime = promissedtime;
|
this.promisseduserguid = promisseduserguid;
|
this.promissedusername = promissedusername;
|
this.promisseduserrealname = promisseduserrealname;
|
this.promissedway = promissedway;
|
this.promisseddeadline = promisseddeadline;
|
this.promissbookpath = promissbookpath;
|
this.signpath = signpath;
|
this.extension1 = extension1;
|
this.extension2 = extension2;
|
this.extension3 = extension3;
|
this.remark = remark;
|
}
|
@Generated(hash = 56451862)
|
public Inspection() {
|
}
|
public String getGuid() {
|
return this.guid;
|
}
|
public void setGuid(String guid) {
|
this.guid = guid;
|
}
|
public String getStguid() {
|
return this.stguid;
|
}
|
public void setStguid(String stguid) {
|
this.stguid = stguid;
|
}
|
public String getSguid() {
|
return this.sguid;
|
}
|
public void setSguid(String sguid) {
|
this.sguid = sguid;
|
}
|
public String getScensename() {
|
return this.scensename;
|
}
|
public void setScensename(String scensename) {
|
this.scensename = scensename;
|
}
|
public String getScenseaddress() {
|
return this.scenseaddress;
|
}
|
public void setScenseaddress(String scenseaddress) {
|
this.scenseaddress = scenseaddress;
|
}
|
public Boolean getIstogether() {
|
return this.istogether;
|
}
|
public void setIstogether(Boolean istogether) {
|
this.istogether = istogether;
|
}
|
public String getEntouraget() {
|
return this.entouraget;
|
}
|
public void setEntouraget(String entouraget) {
|
this.entouraget = entouraget;
|
}
|
public String getEntouragewx() {
|
return this.entouragewx;
|
}
|
public void setEntouragewx(String entouragewx) {
|
this.entouragewx = entouragewx;
|
}
|
public String getEntourage() {
|
return this.entourage;
|
}
|
public void setEntourage(String entourage) {
|
this.entourage = entourage;
|
}
|
public Date getExecutionstarttime() {
|
return this.executionstarttime;
|
}
|
public void setExecutionstarttime(Date executionstarttime) {
|
this.executionstarttime = executionstarttime;
|
}
|
public Date getExecutionendtime() {
|
return this.executionendtime;
|
}
|
public void setExecutionendtime(Date executionendtime) {
|
this.executionendtime = executionendtime;
|
}
|
public Integer getProblemcount() {
|
return this.problemcount;
|
}
|
public void setProblemcount(Integer problemcount) {
|
this.problemcount = problemcount;
|
}
|
public Boolean getIsrechecked() {
|
return this.isrechecked;
|
}
|
public void setIsrechecked(Boolean isrechecked) {
|
this.isrechecked = isrechecked;
|
}
|
public Integer getRecheckcount() {
|
return this.recheckcount;
|
}
|
public void setRecheckcount(Integer recheckcount) {
|
this.recheckcount = recheckcount;
|
}
|
public Integer getPromissednum() {
|
return this.promissednum;
|
}
|
public void setPromissednum(Integer promissednum) {
|
this.promissednum = promissednum;
|
}
|
public Integer getChangednum() {
|
return this.changednum;
|
}
|
public void setChangednum(Integer changednum) {
|
this.changednum = changednum;
|
}
|
public Boolean getIschanged() {
|
return this.ischanged;
|
}
|
public void setIschanged(Boolean ischanged) {
|
this.ischanged = ischanged;
|
}
|
public Boolean getIsrvaluated() {
|
return this.isrvaluated;
|
}
|
public void setIsrvaluated(Boolean isrvaluated) {
|
this.isrvaluated = isrvaluated;
|
}
|
public Boolean getIspromissed() {
|
return this.ispromissed;
|
}
|
public void setIspromissed(Boolean ispromissed) {
|
this.ispromissed = ispromissed;
|
}
|
public Date getPromissedtime() {
|
return this.promissedtime;
|
}
|
public void setPromissedtime(Date promissedtime) {
|
this.promissedtime = promissedtime;
|
}
|
public String getPromisseduserguid() {
|
return this.promisseduserguid;
|
}
|
public void setPromisseduserguid(String promisseduserguid) {
|
this.promisseduserguid = promisseduserguid;
|
}
|
public String getPromissedusername() {
|
return this.promissedusername;
|
}
|
public void setPromissedusername(String promissedusername) {
|
this.promissedusername = promissedusername;
|
}
|
public String getPromisseduserrealname() {
|
return this.promisseduserrealname;
|
}
|
public void setPromisseduserrealname(String promisseduserrealname) {
|
this.promisseduserrealname = promisseduserrealname;
|
}
|
public String getPromissedway() {
|
return this.promissedway;
|
}
|
public void setPromissedway(String promissedway) {
|
this.promissedway = promissedway;
|
}
|
public Date getPromisseddeadline() {
|
return this.promisseddeadline;
|
}
|
public void setPromisseddeadline(Date promisseddeadline) {
|
this.promisseddeadline = promisseddeadline;
|
}
|
public String getPromissbookpath() {
|
return this.promissbookpath;
|
}
|
public void setPromissbookpath(String promissbookpath) {
|
this.promissbookpath = promissbookpath;
|
}
|
public String getSignpath() {
|
return this.signpath;
|
}
|
public void setSignpath(String signpath) {
|
this.signpath = signpath;
|
}
|
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;
|
}
|
|
}
|