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