935090232@qq.com
2021-03-19 81a3369395a7cccceb7cd36f5238cc6fe2aa88e5
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 + ",";
    }
}