| | |
| | | |
| | | @TableField(exist = false) |
| | | private String picturePath; |
| | | |
| | | |
| | | public void setId(String id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setTjNum(String tjNum) { |
| | | this.tjNum = tjNum; |
| | | } |
| | | |
| | | public String getTjNum() { |
| | | return tjNum; |
| | | } |
| | | |
| | | public void setCusId(String cusId) { |
| | | this.cusId = cusId; |
| | | } |
| | | |
| | | public String getCusId() { |
| | | return cusId; |
| | | } |
| | | |
| | | public void setXdt(String xdt) { |
| | | this.xdt = xdt; |
| | | } |
| | | |
| | | public String getXdt() { |
| | | return xdt; |
| | | } |
| | | |
| | | public void setProId(String proId) { |
| | | this.proId = proId; |
| | | } |
| | | |
| | | public String getProId() { |
| | | return proId; |
| | | } |
| | | |
| | | public void setProName(String proName) { |
| | | this.proName = proName; |
| | | } |
| | | |
| | | public String getProName() { |
| | | return proName; |
| | | } |
| | | |
| | | public void setProResult(String proResult) { |
| | | this.proResult = proResult; |
| | | } |
| | | |
| | | public String getProResult() { |
| | | return proResult; |
| | | } |
| | | |
| | | public void setConclusion(String conclusion) { |
| | | this.conclusion = conclusion; |
| | | } |
| | | |
| | | public String getConclusion() { |
| | | return conclusion; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("id", getId()) |
| | | .append("tjNum", getTjNum()) |
| | | .append("cusId", getCusId()) |
| | | .append("xdt", getXdt()) |
| | | .append("proId", getProId()) |
| | | .append("proName", getProName()) |
| | | .append("proResult", getProResult()) |
| | | .append("conclusion", getConclusion()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("deleted", getDeleted()) |
| | | .toString(); |
| | | } |
| | | } |