17 changed files with 375 additions and 87 deletions
@ -0,0 +1,58 @@ |
|||
package com.yxt.yyth.api.empcard; |
|||
|
|||
import com.alibaba.excel.annotation.ExcelIgnore; |
|||
import com.alibaba.excel.annotation.ExcelProperty; |
|||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @author wangpengfei |
|||
* @date 2023/12/22 14:11 |
|||
*/ |
|||
@Data |
|||
public class EmpCardStatisticsExportVo { |
|||
@ColumnWidth(30) |
|||
@ExcelProperty(value = "卡号",index = 1) |
|||
private String code; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "序列号",index = 0) |
|||
private String serialNumber; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "发行时间",index = 2) |
|||
private String createTime; |
|||
// @ColumnWidth(20)
|
|||
// @ExcelProperty(value = "卡片种类",index = 2)
|
|||
// private String cardType;
|
|||
// @ColumnWidth(20)
|
|||
// @ExcelProperty(value = "发行人",index = 3)
|
|||
// private String people;
|
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "状态",index = 3) |
|||
private String stateValue; |
|||
// @ColumnWidth(20)
|
|||
// @ExcelProperty(value = "是否过期",index = 5)
|
|||
// private String isExpire;
|
|||
// @ColumnWidth(20)
|
|||
// @ExcelProperty(value = "是否作废",index = 6)
|
|||
// private String isCancel;
|
|||
// @ColumnWidth(20)
|
|||
// @ExcelProperty(value = "绑定id",index = 7)
|
|||
// private String bind;
|
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "绑定时间",index = 4) |
|||
private String bindDate; |
|||
// @ColumnWidth(20)
|
|||
// @ExcelProperty(value = "提货卡商品",index = 9)
|
|||
// private String goodsName;
|
|||
// @ColumnWidth(20)
|
|||
// @ExcelProperty(value = "商品数量(份)",index = 10)
|
|||
// private String goodsNumber;
|
|||
// @ColumnWidth(20)
|
|||
// @ExcelProperty(value = "已提数量(份)",index = 11)
|
|||
// private String receiveNumber;
|
|||
// @ColumnWidth(20)
|
|||
// @ExcelProperty(value = "未提数量(份)",index = 12)
|
|||
// private String unclaimedNumber;
|
|||
@ExcelIgnore |
|||
private String isEnable; |
|||
} |
Loading…
Reference in new issue