app更新
This commit is contained in:
parent
fbe62622ed
commit
497a554f0b
|
|
@ -101,12 +101,12 @@ public class AppHelp implements Serializable {
|
|||
}
|
||||
AppHelp other = (AppHelp) that;
|
||||
return (this.getApphelpid() == null ? other.getApphelpid() == null : this.getApphelpid().equals(other.getApphelpid()))
|
||||
&& (this.getType() == null ? other.getType() == null : this.getType().equals(other.getType()))
|
||||
&& (this.getCreatedon() == null ? other.getCreatedon() == null : this.getCreatedon().equals(other.getCreatedon()))
|
||||
&& (this.getCreatedby() == null ? other.getCreatedby() == null : this.getCreatedby().equals(other.getCreatedby()))
|
||||
&& (this.getModifiedon() == null ? other.getModifiedon() == null : this.getModifiedon().equals(other.getModifiedon()))
|
||||
&& (this.getModifiedby() == null ? other.getModifiedby() == null : this.getModifiedby().equals(other.getModifiedby()))
|
||||
&& (this.getHelpcontent() == null ? other.getHelpcontent() == null : this.getHelpcontent().equals(other.getHelpcontent()));
|
||||
&& (this.getType() == null ? other.getType() == null : this.getType().equals(other.getType()))
|
||||
&& (this.getCreatedon() == null ? other.getCreatedon() == null : this.getCreatedon().equals(other.getCreatedon()))
|
||||
&& (this.getCreatedby() == null ? other.getCreatedby() == null : this.getCreatedby().equals(other.getCreatedby()))
|
||||
&& (this.getModifiedon() == null ? other.getModifiedon() == null : this.getModifiedon().equals(other.getModifiedon()))
|
||||
&& (this.getModifiedby() == null ? other.getModifiedby() == null : this.getModifiedby().equals(other.getModifiedby()))
|
||||
&& (this.getHelpcontent() == null ? other.getHelpcontent() == null : this.getHelpcontent().equals(other.getHelpcontent()));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -30,7 +30,10 @@ public class AppHelpVersion implements Serializable {
|
|||
private Integer helpType;
|
||||
|
||||
@TableField("help_content")
|
||||
private Integer helpContent;
|
||||
private String helpContent;
|
||||
|
||||
@TableField("load_address")
|
||||
private String loadAddress;
|
||||
|
||||
@TableField("create_time")
|
||||
private Date createTime;
|
||||
|
|
@ -38,6 +41,14 @@ public class AppHelpVersion implements Serializable {
|
|||
@TableField("app_type")
|
||||
private String appType;
|
||||
|
||||
public String getLoadAddress() {
|
||||
return loadAddress;
|
||||
}
|
||||
|
||||
public void setLoadAddress(String loadAddress) {
|
||||
this.loadAddress = loadAddress;
|
||||
}
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
|
@ -52,13 +63,15 @@ public class AppHelpVersion implements Serializable {
|
|||
public void setHelpType(Integer helpType) {
|
||||
this.helpType = helpType;
|
||||
}
|
||||
public Integer getHelpContent() {
|
||||
|
||||
public String getHelpContent() {
|
||||
return helpContent;
|
||||
}
|
||||
|
||||
public void setHelpContent(Integer helpContent) {
|
||||
public void setHelpContent(String helpContent) {
|
||||
this.helpContent = helpContent;
|
||||
}
|
||||
|
||||
public Date getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -15,18 +15,20 @@ public class AppHelpVersionDto {
|
|||
|
||||
private Integer helpType;
|
||||
|
||||
private Integer helpContent;
|
||||
private String helpContent;
|
||||
|
||||
private String appType;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
public AppHelpVersionDto(Integer id, Integer helpType, Integer helpContent, String appType, Date createTime) {
|
||||
this.id = id;
|
||||
this.helpType = helpType;
|
||||
this.helpContent = helpContent;
|
||||
this.appType = appType;
|
||||
this.createTime = createTime;
|
||||
private String loadAddress;
|
||||
|
||||
public String getLoadAddress() {
|
||||
return loadAddress;
|
||||
}
|
||||
|
||||
public void setLoadAddress(String loadAddress) {
|
||||
this.loadAddress = loadAddress;
|
||||
}
|
||||
|
||||
public Integer getId() {
|
||||
|
|
@ -45,11 +47,11 @@ public class AppHelpVersionDto {
|
|||
this.helpType = helpType;
|
||||
}
|
||||
|
||||
public Integer getHelpContent() {
|
||||
public String getHelpContent() {
|
||||
return helpContent;
|
||||
}
|
||||
|
||||
public void setHelpContent(Integer helpContent) {
|
||||
public void setHelpContent(String helpContent) {
|
||||
this.helpContent = helpContent;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user