liujie
2023-05-26 f9de931c4457c2a6bfe395879e3b2f2bfd7d9692
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
package com.stylefeng.guns.modular.system.model;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableName;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@TableName("t_company_basic")
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;
 
}