app更新

This commit is contained in:
79493 2023-05-23 17:32:54 +08:00
parent fbe62622ed
commit 497a554f0b
4 changed files with 35 additions and 20 deletions

View File

@ -101,12 +101,12 @@ public class AppHelp implements Serializable {
} }
AppHelp other = (AppHelp) that; AppHelp other = (AppHelp) that;
return (this.getApphelpid() == null ? other.getApphelpid() == null : this.getApphelpid().equals(other.getApphelpid())) return (this.getApphelpid() == null ? other.getApphelpid() == null : this.getApphelpid().equals(other.getApphelpid()))
&& (this.getType() == null ? other.getType() == null : this.getType().equals(other.getType())) && (this.getType() == null ? other.getType() == null : this.getType().equals(other.getType()))
&& (this.getCreatedon() == null ? other.getCreatedon() == null : this.getCreatedon().equals(other.getCreatedon())) && (this.getCreatedon() == null ? other.getCreatedon() == null : this.getCreatedon().equals(other.getCreatedon()))
&& (this.getCreatedby() == null ? other.getCreatedby() == null : this.getCreatedby().equals(other.getCreatedby())) && (this.getCreatedby() == null ? other.getCreatedby() == null : this.getCreatedby().equals(other.getCreatedby()))
&& (this.getModifiedon() == null ? other.getModifiedon() == null : this.getModifiedon().equals(other.getModifiedon())) && (this.getModifiedon() == null ? other.getModifiedon() == null : this.getModifiedon().equals(other.getModifiedon()))
&& (this.getModifiedby() == null ? other.getModifiedby() == null : this.getModifiedby().equals(other.getModifiedby())) && (this.getModifiedby() == null ? other.getModifiedby() == null : this.getModifiedby().equals(other.getModifiedby()))
&& (this.getHelpcontent() == null ? other.getHelpcontent() == null : this.getHelpcontent().equals(other.getHelpcontent())); && (this.getHelpcontent() == null ? other.getHelpcontent() == null : this.getHelpcontent().equals(other.getHelpcontent()));
} }
@Override @Override

View File

@ -30,7 +30,10 @@ public class AppHelpVersion implements Serializable {
private Integer helpType; private Integer helpType;
@TableField("help_content") @TableField("help_content")
private Integer helpContent; private String helpContent;
@TableField("load_address")
private String loadAddress;
@TableField("create_time") @TableField("create_time")
private Date createTime; private Date createTime;
@ -38,6 +41,14 @@ public class AppHelpVersion implements Serializable {
@TableField("app_type") @TableField("app_type")
private String appType; private String appType;
public String getLoadAddress() {
return loadAddress;
}
public void setLoadAddress(String loadAddress) {
this.loadAddress = loadAddress;
}
public Integer getId() { public Integer getId() {
return id; return id;
} }
@ -52,13 +63,15 @@ public class AppHelpVersion implements Serializable {
public void setHelpType(Integer helpType) { public void setHelpType(Integer helpType) {
this.helpType = helpType; this.helpType = helpType;
} }
public Integer getHelpContent() {
public String getHelpContent() {
return helpContent; return helpContent;
} }
public void setHelpContent(Integer helpContent) { public void setHelpContent(String helpContent) {
this.helpContent = helpContent; this.helpContent = helpContent;
} }
public Date getCreateTime() { public Date getCreateTime() {
return createTime; return createTime;
} }

View File

@ -15,18 +15,20 @@ public class AppHelpVersionDto {
private Integer helpType; private Integer helpType;
private Integer helpContent; private String helpContent;
private String appType; private String appType;
private Date createTime; private Date createTime;
public AppHelpVersionDto(Integer id, Integer helpType, Integer helpContent, String appType, Date createTime) { private String loadAddress;
this.id = id;
this.helpType = helpType; public String getLoadAddress() {
this.helpContent = helpContent; return loadAddress;
this.appType = appType; }
this.createTime = createTime;
public void setLoadAddress(String loadAddress) {
this.loadAddress = loadAddress;
} }
public Integer getId() { public Integer getId() {
@ -45,11 +47,11 @@ public class AppHelpVersionDto {
this.helpType = helpType; this.helpType = helpType;
} }
public Integer getHelpContent() { public String getHelpContent() {
return helpContent; return helpContent;
} }
public void setHelpContent(Integer helpContent) { public void setHelpContent(String helpContent) {
this.helpContent = helpContent; this.helpContent = helpContent;
} }