惠支付服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gratia-pay-parent/open-api/src/test/common/ExcelModel.java

22 lines
382 B

package common;
import com.alibaba.excel.annotation.ExcelProperty;
/**
* @Auther: 胡锐
* @Description:
* @Date: 2021/3/20 20:26
*/
public class ExcelModel {
@ExcelProperty("二维码地址")
private String codeUrl;
public String getCodeUrl() {
return codeUrl;
}
public void setCodeUrl(String codeUrl) {
this.codeUrl = codeUrl;
}
}