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.
22 lines
382 B
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;
|
|
}
|
|
}
|
|
|