package com.bofeng.entity; import com.baomidou.mybatisplus.annotations.TableField; import com.baomidou.mybatisplus.annotations.TableId; import com.baomidou.mybatisplus.annotations.TableName; import io.swagger.annotations.ApiModelProperty; import lombok.Getter; import lombok.Setter; import org.joda.time.DateTime; import java.util.List; import java.util.Map; @Getter @Setter @TableName("sys_owner") public class Owner { @TableId("owner_id") private Long ownerId; @TableField("uptown_id") private Long uptownId; @TableField("linkman") private String linkman; @TableField("phone") private String phone; @TableField("user_create") private Long userCreate; @TableField(exist = false) private DateTime timeCreate; @TableField("user_update") private Long userUpdate; @TableField(exist = false) private DateTime timeUpdate; @TableField(exist = false) private List lstOwnerLinkman; @ApiModelProperty("定位所在省市区小区") @TableField(exist = false) private Map location; }