| package com.xzx.gc.entity;  | 
|   | 
| import io.swagger.annotations.ApiModelProperty;  | 
| import lombok.Data;  | 
|   | 
| import javax.persistence.GeneratedValue;  | 
| import javax.persistence.GenerationType;  | 
| import javax.persistence.Id;  | 
| import javax.persistence.Table;  | 
|   | 
| @Table(name = "xzx_sys_storage")  | 
| @Data  | 
| public class SysStorage {  | 
|   | 
|     @Id  | 
|     @GeneratedValue(strategy = GenerationType.IDENTITY)  | 
|     private Integer id;  | 
|   | 
|     @ApiModelProperty("仓库名字")  | 
|     private String storageName;  | 
|   | 
|     private String storageArea;  | 
|   | 
|     private String province;  | 
|   | 
|     private String city;  | 
|   | 
|     private String area;  | 
|   | 
|     private String detailAddress;  | 
|   | 
|     private String createTime;  | 
|   | 
|     private Integer delFlag;  | 
|   | 
|     private Integer sort;  | 
|   | 
|     private String longitude;  | 
|   | 
|     private String latitude;  | 
|   | 
|     private String partnerId;  | 
|   | 
| } |