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
| 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;
|
| /**
| * @author zhibing.pu
| * @Date 2023/8/1 17:43
| */
| @Data
| @TableName("t_site_type")
| public class TSiteType {
| /**
| * 主键
| */
| @TableId(value = "id", type = IdType.AUTO)
| private Integer id;
| /**
| * 门店id
| */
| @TableField("state")
| private Integer state;
| /**
| * 场地名称
| */
| @TableField("name")
| private String name;
| }
|
|