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; }