中扬CRM客户关系管理系统
#
LSH
2023-12-01 09ee5added9d59e90310a2586e846137ea597b19
src/main/java/com/zy/crm/manager/entity/Rule.java
@@ -103,6 +103,20 @@
        this.ruleStandby2 = ruleStandby2;
    }
    public String getRuleType$(){
        if (null == this.ruleType){ return null; }
        switch (this.ruleType){
            case 1:
                return "生成当前日期时间戳";
            case 2:
                return "生成长度为10的随机字符串";
            case 3:
                return "生成日期时间字符串";
            default:
                return String.valueOf(this.ruleType);
        }
    }
    public String getRuleConnectorType$(){
        if (null == this.ruleConnectorType){ return null; }
        switch (this.ruleConnectorType){
@@ -116,12 +130,12 @@
    }
    public String getRuleConnector$(){
        if (null == this.ruleConnectorType){ return null; }
        if (null == this.ruleConnector){ return null; }
        switch (this.ruleConnector){
            case "-":
                return "默认'-'";
                return "默认:-";
            default:
                return String.valueOf(this.ruleConnectorType);
                return String.valueOf(this.ruleConnector);
        }
    }