doum
2025-12-12 89029e9ade03f3139c6afcd6bac48d9a668875f3
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
package com.doumee.dao.web.dto;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.doumee.core.annotation.excel.ExcelColumn;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @author T14
 */
@Data
public class CardParamDTO {
 
    @ApiModelProperty(value = "主键", example = "1")
    private Integer id;
 
    @ApiModelProperty(value = "创建时间")
    private Date createDate;
 
    @ApiModelProperty(value = "备注")
    @ExcelColumn(name="备注")
    private String remark;
 
    @ApiModelProperty(value = "名称")
    private String name;
 
    @ApiModelProperty(value = "样卡图")
    private String imgurl;
 
    @ApiModelProperty(value = "样卡图全路径")
    private String imgurlfull;
 
    @ApiModelProperty(value = "卡号开头4位")
    private String indexNo;
 
    @ApiModelProperty(value = "卡号起始值")
    private String startNo;
 
 
    @ApiModelProperty(value = "状态0正常 1异常")
    private Integer status;
 
    @ApiModelProperty(value = "排序码")
    private Integer sortnum;
 
    @ApiModelProperty(value = "当前卡数量")
    private Integer countNum;
 
}