RefillCard.java 1.48 KB
Newer Older
liaoanyuan's avatar
liaoanyuan committed
1 2 3 4 5 6
package cn.wisenergy.model.app;

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

liaoanyuan's avatar
liaoanyuan committed
7
import java.io.Serializable;
liaoanyuan's avatar
liaoanyuan committed
8 9 10 11
import java.util.Date;

@Data
@ApiModel(value = "RefillCard")
liaoanyuan's avatar
liaoanyuan committed
12 13
public class RefillCard implements Serializable {
    private static final long serialVersionUID = 4018232893584885138L;
liaoanyuan's avatar
liaoanyuan committed
14 15 16 17 18 19 20 21 22 23
    /**
     * 充值卡id
     */
    @ApiModelProperty(value = "充值卡id",name = "id")
    private Integer id;

    /**
     * 批次号
     */
    @ApiModelProperty(value = "批次号",name = "batchNumber")
licc's avatar
licc committed
24
    private String batchNumber;
liaoanyuan's avatar
liaoanyuan committed
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

    /**
     * 是否已制卡 0:已制卡 1:未制卡
     */
    @ApiModelProperty(value = "是否已制卡 0:已制卡 1:未制卡",name = "isMakeCard")
    private Integer isMakeCard;

    /**
     * 卡数量
     */
    @ApiModelProperty(value = "卡数量",name = "cardNumber")
    private Integer cardNumber  ;

    /**
     * 是否已激活
     */
    @ApiModelProperty(value = "是否已激活 0:已激活 1:未激活 ",name = "isActivite")
    private Integer isActivite;

    /**
     * 是否删除
     */
    @ApiModelProperty(value = "是否删除 0:正常 1:删除",name = "isDelete")
    private Integer isDelete;

    /**
     * 创建时间
     */
    @ApiModelProperty(value = "创建时间",name = "creteTime")
    private Date createTime;

    /**
     *更改时间
     */
    @ApiModelProperty(value = "更改时间",name = "updateTime")
    private Date updateTime;
}