mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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;
}