puzhibing
2024-03-06 a2ca8c0889a39ebd83195d5d2ebe8e2ed20b16d5
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
package com.dsh.guns.modular.system.model;
 
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 lombok.Data;
 
import java.util.Date;
 
@TableName("t_gate")
@Data
public class Gate {
    @TableId(value = "id", type = IdType.INPUT)
    private Integer id;
    // 闸机名称
    @TableField("name")
    private String name;
    // 硬件编号
    @TableField("device")
    private String device;
    // 门店id
    @TableField("storeId")
    private Integer storeId;
    // 场地id
    @TableField("siteId")
    private Integer siteId;
    // 运营商id 0为平台
    @TableField("operatorId")
    private Integer operatorId;
    // 是否删除 0否1是
    @TableField("isDelete")
    private Integer isDelete;
}