123
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package com.ruoyi.cai.dto.admin.export;
|
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class AccountBlackExportVo {
|
||||
@ExcelProperty(value = "账户号")
|
||||
private String cardAccount;
|
||||
/**
|
||||
* 账户名称
|
||||
*/
|
||||
@ExcelProperty(value = "账户名称")
|
||||
private String cardName;
|
||||
/**
|
||||
* 是否开启
|
||||
*/
|
||||
@ExcelProperty(value = "是否启用(1-启用,0-不启用)")
|
||||
private Integer enableStatus;
|
||||
}
|
||||
Reference in New Issue
Block a user