中扬CRM客户关系管理系统
#
luxiaotao1123
2022-11-15 65a809eede3d90cf8cd5cadcdd1b4a5c1faba46d
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;
    /**
@@ -310,7 +310,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 +326,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)