Commit fb06ffff by huangZW

111

parent b5b24ad9
......@@ -62,10 +62,20 @@ public class WxEnterpriseDTO implements Serializable {
private Date createTime;
private Date updateTime;
//小程序版本
private String smallVersion;
private static final long serialVersionUID = 1L;
public String getWxEnterpriseId() {
public String getSmallVersion() {
return smallVersion;
}
public void setSmallVersion(String smallVersion) {
this.smallVersion = smallVersion;
}
public String getWxEnterpriseId() {
return wxEnterpriseId;
}
......
......@@ -87,6 +87,7 @@ public class WxEnterpriseController extends WebBaseController{
return resultResponse(HaoBanErrCode.ERR_1);
}
WxEnterpriseDTO wxEnterpriseDTO = wxEnterpriseApiService.getOne(wxEnterpriseId);
wxEnterpriseDTO.setSmallVersion("免费版");
return resultResponse(HaoBanErrCode.ERR_1,wxEnterpriseDTO);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment