中扬CRM客户关系管理系统
LSH
2023-08-22 e89a0bdd6041774d77408744993ba3b98a1e1c97
src/main/java/com/zy/crm/manager/entity/Order.java
@@ -66,21 +66,21 @@
    private Long cstmrId;
    /**
     * 客户代号
     * 项目代号
     */
    @ApiModelProperty(value= "客户代号")
    @ApiModelProperty(value= "项目代号")
    private String uuid;
    /**
     * 客户名称
     * 跟踪项目名称
     */
    @ApiModelProperty(value= "客户名称")
    @ApiModelProperty(value= "跟踪项目名称")
    private String name;
    /**
     * 总金额
     * 项目总金额
     */
    @ApiModelProperty(value= "总金额")
    @ApiModelProperty(value= "项目总金额")
    private Double money;
    /**
@@ -173,6 +173,12 @@
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date updateTime;
    @ApiModelProperty(value= "项目进度流程{1:项目创建,2:核价处理,3:产品费用明细,4:报价预算单,5:报价单}")
    @TableField("step")
    private int step;
    /**
     * 注释
     */
@@ -181,7 +187,7 @@
    public Order() {}
    public Order(Long hostId,Long deptId,Long userId,Long cstmrId,String uuid,String name,Double money,Long company,String remarks,Long director,String province,String city,String district,String town,String addr,String files,Integer status,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) {
    public Order(Long hostId,Long deptId,Long userId,Long cstmrId,String uuid,String name,Double money,Long company,String remarks,Long director,String province,String city,String district,String town,String addr,String files,Integer status,Long createBy,Date createTime,Long updateBy,Date updateTime,Integer step,String memo) {
        this.hostId = hostId;
        this.deptId = deptId;
        this.userId = userId;
@@ -203,6 +209,7 @@
        this.createTime = createTime;
        this.updateBy = updateBy;
        this.updateTime = updateTime;
        this.step = step;
        this.memo = memo;
    }
@@ -310,7 +317,7 @@
        if (Cools.isEmpty(this.createTime)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.createTime);
        return new SimpleDateFormat("yyyy-MM-dd HH:mm").format(this.createTime);
    }
    public String getUpdateBy$(){
@@ -326,7 +333,7 @@
        if (Cools.isEmpty(this.updateTime)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.updateTime);
        return new SimpleDateFormat("yyyy-MM-dd HH:mm").format(this.updateTime);
    }
    @TableField(exist = false)