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; }