.
18516761980
2022-03-01 ba8707edce069705cfea7e1616f72283f74e67ed
src/main/java/zy/cloud/wms/manager/entity/Item.java
@@ -175,9 +175,192 @@
    @TableField("project_status")
    private Integer projectStatus;
    /**
     * 订单类型
     */
    @ApiModelProperty(value= "订单类型")
    @TableField("orderDesc")
    private String orderDesc;
    /**
     * 业务员
     */
    @ApiModelProperty(value= "业务员")
    @TableField("salesman")
    private String salesman;
    /**
     * 售前核价金额
     */
    @ApiModelProperty(value= "售前核价金额")
    @TableField("presaleAmt")
    private Double presaleAmt;
    /**
     * 销售预交货期
     */
    @ApiModelProperty(value= "销售预交货期")
    @TableField("predeDate")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date predeDate;
    /**
     * 销售预安装期
     */
    @ApiModelProperty(value= "销售预安装期")
    @TableField("preinDate")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date preinDate;
    /**
     * 产品重量
     */
    @ApiModelProperty(value= "产品重量")
    @TableField("weight")
    private Double weight;
    /**
     * 是否安装
     */
    @ApiModelProperty(value= "安装")
    @TableField("installMk")
    private Integer installMk;
    /**
     * 是否运输
     */
    @ApiModelProperty(value= "运输")
    @TableField("deliveryMk")
    private Integer deliveryMk;
    /**
     * 客户联系人
     */
    @ApiModelProperty(value= "客户联系人")
    @TableField("custMan")
    private String custMan;
    /**
     * 联系方式
     */
    @ApiModelProperty(value= "联系方式")
    @TableField("custMobile")
    private String custMobile;
    /**
     * 联系地址
     */
    @ApiModelProperty(value= "联系地址")
    @TableField("custAdress")
    private String custAdress;
    /**
     * 进度
     */
    @ApiModelProperty(value= "进度")
    @TableField("progressRate")
    private String progressRate;
    /**
     * 车辆信息
     */
    @ApiModelProperty(value= "车辆信息")
    @TableField("planCarInfo")
    private String planCarInfo;
    /**
     * 预计发货日期
     */
    @ApiModelProperty(value= "预计发货日期")
    @TableField("plandeDate")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date plandeDate;
    /**
     * 实际发货日期
     */
    @ApiModelProperty(value= "实际发货日期")
    @TableField("realdeDate")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date realdeDate;
    /**
     * 预计安装日期
     */
    @ApiModelProperty(value= "预计安装日期")
    @TableField("planinDate")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date planinDate;
    /**
     * 实际安装日期
     */
    @ApiModelProperty(value= "实际安装日期")
    @TableField("realinDate")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date realinDate;
    /**
     * 预计运费
     */
    @ApiModelProperty(value= "预计运费")
    @TableField("plandeAmt")
    private Double plandeAmt;
    /**
     * 实际运费
     */
    @ApiModelProperty(value= "实际运费")
    @TableField("realdeAmt")
    private Double realdeAmt;
    /**
     * 预计安装费
     */
    @ApiModelProperty(value= "预计安装费")
    @TableField("planinAmt")
    private Double planinAmt;
    /**
     * 实际安装费
     */
    @ApiModelProperty(value= "实际安装费")
    @TableField("realinAmt")
    private Double realinAmt;
    /**
     * 预计初验日期
     */
    @ApiModelProperty(value= "预计初验日期")
    @TableField("planFADate")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date planFADate;
    /**
     * 实际初验日期
     */
    @ApiModelProperty(value= "实际初验日期")
    @TableField("realFADate")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date realFADate;
    /**
     * 预计终验日期
     */
    @ApiModelProperty(value= "预计终验日期")
    @TableField("planLADate")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date planLADate;
    /**
     * 实际终验日期
     */
    @ApiModelProperty(value= "实际终验日期")
    @TableField("realLADate")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date realLADate;
    public Item() {}
//    Item item = new Item(
//            null,    // 项目编号[非空]
@@ -476,6 +659,74 @@
        this.memo = memo;
    }
    public String getPredeDate$(){
        if (Cools.isEmpty(this.predeDate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.predeDate);
    }
    public String getPreinDate$(){
        if (Cools.isEmpty(this.preinDate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.preinDate);
    }
}
    public String getPlandeDate$(){
        if (Cools.isEmpty(this.plandeDate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.plandeDate);
    }
    public String getRealdeDate$(){
        if (Cools.isEmpty(this.realdeDate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.realdeDate);
    }
    public String getPlaninDate$(){
        if (Cools.isEmpty(this.planinDate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.planinDate);
    }
    public String getRealinDate$(){
        if (Cools.isEmpty(this.realinDate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.realinDate);
    }
    public String getPlanFADate$(){
        if (Cools.isEmpty(this.planFADate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.planFADate);
    }
    public String getRealFADate$(){
        if (Cools.isEmpty(this.realFADate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.realFADate);
    }
    public String getPlanLADate$(){
        if (Cools.isEmpty(this.planLADate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.planLADate);
    }
    public String getRealLADate$(){
        if (Cools.isEmpty(this.realLADate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.realLADate);
    }
}