| 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 + ","; | 
|     } | 
| } |