CouponEntitySendViewExport.java
2.43 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/**
 * @(#)CouponEntity.java 
 *
 * Copyright (c) 2014-2014  苏州犀牛网络科技有限公司 版权所有
 * xiniunet. All rights reserved.
 *
 * This software is the confidential and proprietary
 * information of  xiniunet.
 * ("Confidential Information"). You shall not disclose
 * such Confidential Information and shall use it only
 * in accordance with the terms of the contract agreement
 * you entered into with xiniunet.
 */
package com.xiniunet.web.home.domain;
import com.alibaba.fastjson.annotation.JSONField;
import com.xiniunet.framework.base.BaseDomain;
import com.xiniunet.framework.util.excel.annotation.Name;
import com.xiniunet.framework.util.excel.annotation.Type;
import com.xiniunet.framework.util.excel.enumeration.DataType;
import java.util.Date;
/**
 * Created by 金洋 on 2015-09-11 09:37:00.
 * @author 金洋
 */
public class CouponEntitySendViewExport extends BaseDomain {
    /**
     * 主键
     */
    @Name("优惠券号")
    private  Long   id;
    /**
     * 发放时间
     */
    @Name("发放时间")
    @Type(DataType.DATETIME)
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date creationTime;
    /**
     * 是否使用
     */
    @Name("是否已使用")
    private String isUsed;
    /**
     * 订单ID
     */
    private  Long   orderId;
    /**
     * 关联订单号
     */
    @Name("使用订单")
    private  String   orderNumber;
    /**
     * 订单时间
     */
    @Name("使用时间")
    @Type(DataType.DATETIME)
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private  Date   orderTime;
    public Long getId() {
        return id;
    }
    public void setId(Long id) {
        this.id = id;
    }
    public Long getOrderId() {
        return orderId;
    }
    public void setOrderId(Long orderId) {
        this.orderId = orderId;
    }
    public String getOrderNumber() {
        return orderNumber;
    }
    public void setOrderNumber(String orderNumber) {
        this.orderNumber = orderNumber;
    }
    public Date getOrderTime() {
        return orderTime;
    }
    public void setOrderTime(Date orderTime) {
        this.orderTime = orderTime;
    }
    public Date getCreationTime() {
        return creationTime;
    }
    public void setCreationTime(Date creationTime) {
        this.creationTime = creationTime;
    }
    public String getIsUsed() {
        return isUsed;
    }
    public void setIsUsed(String isUsed) {
        this.isUsed = isUsed;
    }
}