puzhibing
2023-06-13 11b4c2cf16ff93e4e4955f88db3ae9c28d6f7782
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
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 com.baomidou.mybatisplus.extension.activerecord.Model;
import com.fasterxml.jackson.annotation.JsonFormat;
 
import java.util.Date;
 
/**
 * <p>
 * banner信息表 
 * </p>
 *
 * @author stylefeng
 * @since 2022-06-17
 */
@TableName("t_hot_address")
public class TbHotAddress extends Model<TbHotAddress> {
    private static final long serialVersionUID = 1L;
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 图片
     */
    @TableField("cityId")
    private Integer cityId;
    @TableField("name")
    private String name;
    @TableField("areaId")
    private Integer areaId;
 
    public Integer getAreaId() {
        return areaId;
    }
 
    public void setAreaId(Integer areaId) {
        this.areaId = areaId;
    }
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getCityId() {
        return cityId;
    }
 
    public void setCityId(Integer cityId) {
        this.cityId = cityId;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        this.address = address;
    }
 
    public Double getLon() {
        return lon;
    }
 
    public void setLon(Double lon) {
        this.lon = lon;
    }
 
    public Double getLat() {
        return lat;
    }
 
    public void setLat(Double lat) {
        this.lat = lat;
    }
 
    public Integer getHide() {
        return hide;
    }
 
    public void setHide(Integer hide) {
        this.hide = hide;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Integer getSort() {
        return sort;
    }
 
    public void setSort(Integer sort) {
        this.sort = sort;
    }
 
    @TableField("address")
    private String address;
    @TableField("lon")
    private Double lon;
    @TableField("lat")
    private Double lat;
 
    // 是否隐藏(1是 0否)
    @TableField("hide")
    private Integer hide;
    @TableField("createTime")
    private Date createTime;
    @TableField("sort")
    private Integer sort;
 
    public String getPname() {
        return pname;
    }
 
    public void setPname(String pname) {
        this.pname = pname;
    }
 
    @TableField(exist = false)
    private String pname;
 
}