app更新
This commit is contained in:
parent
fbe62622ed
commit
497a554f0b
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user