zhou zhou
4 天以前 73ec875e216f434d510a6b95c574fe80387b2bc2
rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/Warehouse.java
@@ -4,6 +4,9 @@
import java.text.SimpleDateFormat;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.experimental.Accessors;
import org.springframework.format.annotation.DateTimeFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
@@ -22,6 +25,7 @@
@Data
@TableName("man_warehouse")
@Accessors(chain = true)
@ApiModel(value = "Warehouse", description = "仓库基础信息")
public class Warehouse implements Serializable {
@@ -58,35 +62,35 @@
    @ApiModelProperty(value= "仓库地址")
    private String address;
    /**
     * 经度
     */
    @ApiModelProperty(value= "经度")
    private String longitude;
    /**
     * 纬度
     */
    @ApiModelProperty(value= "纬度")
    private String latgitude;
    /**
     * 长
     */
    @ApiModelProperty(value= "长")
    private Double length;
    /**
     * 宽
     */
    @ApiModelProperty(value= "宽")
    private Double width;
    /**
     * 高
     */
    @ApiModelProperty(value= "高")
    private Double height;
//    /**
//     * 经度
//     */
//    @ApiModelProperty(value= "经度")
//    private String longitude;
//
//    /**
//     * 纬度
//     */
//    @ApiModelProperty(value= "纬度")
//    private String latgitude;
//
//    /**
//     * 长
//     */
//    @ApiModelProperty(value= "长")
//    private Double length;
//
//    /**
//     * 宽
//     */
//    @ApiModelProperty(value= "宽")
//    private Double width;
//
//    /**
//     * 高
//     */
//    @ApiModelProperty(value= "高")
//    private Double height;
    /**
     * 状态 1: 正常  0: 冻结  
@@ -118,6 +122,7 @@
     */
    @ApiModelProperty(value= "添加时间")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private Date createTime;
    /**
@@ -131,6 +136,7 @@
     */
    @ApiModelProperty(value= "修改时间")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private Date updateTime;
    /**
@@ -161,11 +167,11 @@
        this.code = code;
        this.factory = factory;
        this.address = address;
        this.longitude = longitude;
        this.latgitude = latgitude;
        this.length = length;
        this.width = width;
        this.height = height;
//        this.longitude = longitude;
//        this.latgitude = latgitude;
//        this.length = length;
//        this.width = width;
//        this.height = height;
        this.status = status;
        this.deleted = deleted;
        this.tenantId = tenantId;