jyy
2021-05-10 f12b519702e4c4c246238f79f95215f8cd26dea7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.matrix.system.shopXcx.api.pojo;
 
public class QrcodeImgParam {
    public String qrcodeSavePath = "";
    public String qrcodeBackgroundImgPath = "";
    public String qrcodeFrontImgPath = "";
    public String productImgPath = "";
    public String targetImg = "";
    public String title = "";
    public String price = "";
    public String logo = "";
    public String couponName = "";
    public String couponDate = "";
    public String urlPath;
 
    @Override
    public String toString() {
      return  "qrcodeSavePath=" + this.qrcodeSavePath + "," +
                "qrcodeBackgroundImgPath=" + this.qrcodeBackgroundImgPath + "," +
                "qrcodeFrontImgPath=" + this.qrcodeFrontImgPath + "," +
                "productImgPath=" + this.productImgPath + "," +
                "targetImg=" + this.targetImg + "," +
                "title=" + this.title + "," +
                "price=" + this.price + "," +
                "logo=" + this.logo + "," +
                "couponName=" + this.couponName + "," +
                "couponDate=" + this.couponDate + ",";
    }
}