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.stylefeng.guns.modular.system.model;
|
| import com.baomidou.mybatisplus.annotations.TableField;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| import java.math.BigDecimal;
|
| @Data
| public class TCompanyBasic {
| private Integer id;
| @TableField("type")
| private Integer type;
| @TableField("name")
| private String name;
| @TableField("fee")
| private BigDecimal fee;
| @TableField("category")
| @ApiModelProperty("1精确地址 2精确邮编")
| private Integer category;
| @TableField("address")
| private String address;
| @TableField("lon_lat")
| private String lonLat;
| @TableField("port_id")
| private Integer portId;
| @TableField("zip_code")
| private String zipCode;
| @TableField("start")
| private Integer start;
| @TableField("end")
| private Integer end;
|
| }
|
|