Commit 88238c23 by lili

加上分类

parent 2bd108a5
......@@ -462,6 +462,7 @@ public class BookGroupClassifyBizImpl implements BookGroupClassifyBiz {
}
String spareQr = getSpareQr(classify.getBookGroupId());
groupQrcode4ClassifyVO.setSpareQr(spareQr);
groupQrcode4ClassifyVO.setClassify(classify.getClassify());
return groupQrcode4ClassifyVO;
}
......
......@@ -33,6 +33,17 @@ public class GroupQrcode4ClassifyVO implements Serializable {
@ApiModelProperty("备用二维码")
private String spareQr;
@ApiModelProperty("分类名称")
private String classify;
public String getClassify() {
return classify;
}
public void setClassify(String classify) {
this.classify = classify;
}
public Long getGroupQrcodeId() {
return groupQrcodeId;
}
......@@ -90,6 +101,7 @@ public class GroupQrcode4ClassifyVO implements Serializable {
", userNumber=" + userNumber +
", groupQrcodeId=" + groupQrcodeId +
", spareQr='" + spareQr + '\'' +
", classify='" + classify + '\'' +
'}';
}
}
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