fei.wang
2025-04-18 321a74059773cfecc01d6313f7c2e2d45545d6d3
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
package com.hxzkappboot.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author wangfei
 * @since 2024-11-26
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("tb_fakaji")
@ApiModel(value="TbFakaji对象", description="")
public class TbFakaji implements Serializable {
 
    private static final long serialVersionUID=1L;
 
      @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty(value = "柜子编号")
    @TableField("slotnumber")
    private String slotnumber;
 
    @ApiModelProperty(value = "卡槽编号")
    @TableField("deviceid")
    private String deviceid;
 
    @ApiModelProperty(value = "卡编号")
    @TableField("hascard")
    private String hascard;
 
    @TableField("selected")
    private String selected;
 
    @ApiModelProperty(value = "状态(有卡/取出)")
    @TableField("checked")
    private String checked;
 
    @ApiModelProperty(value = "绑定状态")
    @TableField("allowtakecard")
    private String allowtakecard;
 
    @ApiModelProperty(value = "时间")
    @TableField("lasttakeuser")
    private String lasttakeuser;
 
    @TableField("lasttaketime")
    private String lasttaketime;
 
    @ApiModelProperty(value = "用户id")
    @TableField("lastreturntime")
    private String lastreturntime;
 
    @TableField("tagname")
    private String tagname;
 
    @TableField("status")
    private String status;
 
    @TableField("userid")
    private String userid;
 
    @TableField("tagid")
    private String tagid;
 
    @TableField(exist = false)
    private String cabinetname;
 
 
 
}