package com.panzhihua.common.model.vos.community.warehouse;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @title: WarehouseDonatesExcelVO
|
* @projectName: 成都呐喊信息技术有限公司-智慧社区项目
|
* @description: 捐赠物品ExcelVO
|
* @author: hans
|
* @date: 2021/10/09 17:42
|
*/
|
@Data
|
public class WarehouseDonatesExcelVO implements Serializable {
|
|
private static final long serialVersionUID = -7026869907781559301L;
|
|
@ExcelProperty(value = "捐赠用户", index = 0)
|
private String name;
|
|
@ExcelProperty(value = "联系电话", index = 1)
|
private String phone;
|
|
@ExcelProperty(value = "捐赠物品", index = 2)
|
private String item;
|
|
@ExcelProperty(value = "捐赠数量", index = 3)
|
private Integer quantity;
|
|
@ExcelProperty(value = "匿名捐赠", index = 4)
|
private String isAnonymous;
|
|
@ExcelProperty(value = "留言信息", index = 5)
|
private String message;
|
|
@ExcelProperty(value = "物品签收时间", index = 6)
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date signingAt;
|
|
/**
|
* 剩余数量
|
*/
|
private Integer surplusQuantity;
|
/**
|
* 捐赠状态
|
*/
|
private Integer status;
|
/**
|
* 社区id
|
*/
|
private Long communityId;
|
/**
|
* 物品登记时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date registerAt;
|
/**
|
* 登记人
|
*/
|
private Long registerBy;
|
/**
|
* 签收人
|
*/
|
private Long signingBy;
|
}
|