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
| package com.dsh.other.entity;
|
| 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;
|
| /**
| * @author zhibing.pu
| * @date 2023/7/13 16:52
| */
| @Data
| @TableName("t_site_type")
| public class SiteType {
| /**
| * 主键
| */
| @TableId(value = "id", type = IdType.AUTO)
| private Integer id;
| /**
| * 场地类型名称
| */
| @TableField("name")
| private String name;
| /**
| * 状态(1=正常,2=冻结,3=删除)
| */
| @TableField("state")
| private Integer state;
| }
|
|