CardInfo.java 1.56 KB
Newer Older
liaoanyuan's avatar
liaoanyuan committed
1 2 3 4 5 6 7 8 9
package cn.wisenergy.model.app;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import java.io.Serializable;
import java.util.Date;

10
/**
11
 * 充值卡字卡实体类
12
 */
liaoanyuan's avatar
liaoanyuan committed
13 14 15 16 17 18
@Data
@ApiModel(value = "CardInfo")
public class CardInfo implements Serializable {
    /**
     * 子卡id
     */
19
    @ApiModelProperty(value = "子卡id",name = "id")
liaoanyuan's avatar
liaoanyuan committed
20 21 22 23 24
    private Integer id;

    /**
     * 批次号
     */
25
    @ApiModelProperty(value = "批次号",name = "batchNumber")
26
    private String batchNumber;
liaoanyuan's avatar
liaoanyuan committed
27

liaoanyuan's avatar
liaoanyuan committed
28 29 30
    /**
     * 批次号
     */
31
    @ApiModelProperty(value = "批次号",name = "batchNumber")
liaoanyuan's avatar
liaoanyuan committed
32 33
    private String cardNumber;

liaoanyuan's avatar
liaoanyuan committed
34 35 36
    /**
     * 次数
     */
37
    @ApiModelProperty(value = "次数",name = "limit")
liaoanyuan's avatar
liaoanyuan committed
38 39 40 41 42
    private Integer limit;

    /**
     * 秘钥
     */
43 44
    @ApiModelProperty(value = "秘钥",name = "secretKey")
    private String secretKey ;
liaoanyuan's avatar
liaoanyuan committed
45 46 47 48

    /**
     * 卡的金额
     */
49 50
    @ApiModelProperty(value = "卡的金额",name = "money")
    private String money;
liaoanyuan's avatar
liaoanyuan committed
51 52 53 54

    /**
     * 状态
     */
55
    @ApiModelProperty(value = "状态 0:未使用 1:已使用",name = "status")
liaoanyuan's avatar
liaoanyuan committed
56 57 58 59 60
    private Integer status;

    /**
     * 是否删除
     */
61
    @ApiModelProperty(name = "isDelete",value = "是否删除 0:正常 1:删除")
liaoanyuan's avatar
liaoanyuan committed
62 63 64 65
    private Integer isDelete;
    /**
     * 创建时间
     */
66
    @ApiModelProperty(value = "创建时间",name = "creteTime")
liaoanyuan's avatar
liaoanyuan committed
67 68
    private Date createTime;
    /**
69
     *更改时间
liaoanyuan's avatar
liaoanyuan committed
70
     */
71
    @ApiModelProperty(value = "更改时间",name = "updateTime")
liaoanyuan's avatar
liaoanyuan committed
72 73
    private Date updateTime;
}