dengsixing %!s(int64=3) %!d(string=hai) anos
pai
achega
16ac325501

+ 1 - 1
4dkankan-common-utils/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <groupId>com.fdkankan</groupId>
         <artifactId>4dkankan-utils</artifactId>
-        <version>2.0.0-SNAPSHOT</version>
+        <version>ZJ-2.0.0-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 

+ 3 - 1
4dkankan-common-utils/src/main/java/com/fdkankan/common/util/FileUtils.java

@@ -1044,7 +1044,9 @@ public class FileUtils {
 //            System.out.println(s);
 //        }
 
-        cn.hutool.core.io.FileUtil.copy("F:\\test2\\1.txt", "F:\\test1\\1.txt", true);
+//        cn.hutool.core.io.FileUtil.copy("F:\\test2\\1.txt", "F:\\test1\\1.txt", true);
+
+        FileUtils.writeFile("F:\\test\\test.txt", "ddddddd");
 
     }
 

+ 1 - 1
4dkankan-utils-app-push/pom.xml

@@ -5,7 +5,7 @@
     <parent>
         <artifactId>4dkankan-utils</artifactId>
         <groupId>com.fdkankan</groupId>
-        <version>2.0.0-SNAPSHOT</version>
+        <version>ZJ-2.0.0-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 

+ 2 - 2
4dkankan-utils-db/pom.xml

@@ -6,12 +6,12 @@
     <parent>
         <groupId>com.fdkankan</groupId>
         <artifactId>4dkankan-utils</artifactId>
-        <version>2.0.0-SNAPSHOT</version>
+        <version>ZJ-2.0.0-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
     <artifactId>4dkankan-utils-db</artifactId>
-    <version>2.0.0-SNAPSHOT</version>
+    <version>ZJ-2.0.0-SNAPSHOT</version>
     <dependencies>
 
         <dependency>

+ 87 - 87
4dkankan-utils-db/src/main/java/com/fdkankan/db/config/DruidConfig.java

@@ -1,93 +1,93 @@
-package com.fdkankan.db.config;
-
-import java.sql.SQLException;
-//import javax.servlet.Filter;
-//import javax.servlet.Servlet;
-import javax.sql.DataSource;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
-import org.springframework.boot.context.properties.EnableConfigurationProperties;
-import org.springframework.boot.web.servlet.FilterRegistrationBean;
-import org.springframework.boot.web.servlet.ServletRegistrationBean;
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.Configuration;
-
-import com.alibaba.druid.pool.DruidDataSource;
-import com.alibaba.druid.support.http.StatViewServlet;
-import com.alibaba.druid.support.http.WebStatFilter;
-
-@Configuration
-@EnableConfigurationProperties({DruidDataSourceProperties.class})
-public class DruidConfig {
-    @Autowired
-    private DruidDataSourceProperties properties;
-
-    @Bean
-    @ConditionalOnMissingBean
-    public DataSource druidDataSource() {
-        DruidDataSource druidDataSource = new DruidDataSource();
-        druidDataSource.setDriverClassName(properties.getDriverClassName());
-        druidDataSource.setUrl(properties.getUrl());
-        druidDataSource.setUsername(properties.getUsername());
-        druidDataSource.setPassword(properties.getPassword());
-        druidDataSource.setInitialSize(properties.getInitialSize());
-        druidDataSource.setMinIdle(properties.getMinIdle());
-        druidDataSource.setMaxActive(properties.getMaxActive());
-        druidDataSource.setMaxWait(properties.getMaxWait());
-        druidDataSource.setTimeBetweenEvictionRunsMillis(properties.getTimeBetweenEvictionRunsMillis());
-        druidDataSource.setMinEvictableIdleTimeMillis(properties.getMinEvictableIdleTimeMillis());
-        druidDataSource.setValidationQuery(properties.getValidationQuery());
-        druidDataSource.setTestWhileIdle(properties.isTestWhileIdle());
-        druidDataSource.setTestOnBorrow(properties.isTestOnBorrow());
-        druidDataSource.setTestOnReturn(properties.isTestOnReturn());
-        druidDataSource.setPoolPreparedStatements(properties.isPoolPreparedStatements());
-        druidDataSource.setMaxPoolPreparedStatementPerConnectionSize(properties.getMaxPoolPreparedStatementPerConnectionSize());
-
-        try {
-            druidDataSource.setFilters(properties.getFilters());
-            druidDataSource.init();
-        } catch (SQLException e) {
-            e.printStackTrace();
-        }
-
-        return druidDataSource;
-    }
-
-//    /**
-//     * 注册Servlet信息, 配置监控视图
-//     *
-//     * @return
-//     */
-//    @Bean
-//    @ConditionalOnMissingBean
-//    public ServletRegistrationBean<Servlet> druidServlet() {
-//        ServletRegistrationBean<Servlet> servletRegistrationBean = new ServletRegistrationBean<Servlet>(new StatViewServlet(), "/druid/*");
+//package com.fdkankan.db.config;
 //
-//        //白名单:
-//        servletRegistrationBean.addInitParameter("allow","192.168.1.195");
-//        //IP黑名单 (存在共同时,deny优先于allow) : 如果满足deny的话提示:Sorry, you are not permitted to view this page.
-//        servletRegistrationBean.addInitParameter("deny","192.168.1.119");
-//        //登录查看信息的账号密码, 用于登录Druid监控后台
-//        servletRegistrationBean.addInitParameter("loginUsername", "admin");
-//        servletRegistrationBean.addInitParameter("loginPassword", "admin");
-//        //是否能够重置数据.
-//        servletRegistrationBean.addInitParameter("resetEnable", "true");
-//        return servletRegistrationBean;
+//import java.sql.SQLException;
+////import javax.servlet.Filter;
+////import javax.servlet.Servlet;
+//import javax.sql.DataSource;
+//import org.springframework.beans.factory.annotation.Autowired;
+//import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
+//import org.springframework.boot.context.properties.EnableConfigurationProperties;
+//import org.springframework.boot.web.servlet.FilterRegistrationBean;
+//import org.springframework.boot.web.servlet.ServletRegistrationBean;
+//import org.springframework.context.annotation.Bean;
+//import org.springframework.context.annotation.Configuration;
 //
-//    }
+//import com.alibaba.druid.pool.DruidDataSource;
+//import com.alibaba.druid.support.http.StatViewServlet;
+//import com.alibaba.druid.support.http.WebStatFilter;
+//
+//@Configuration
+//@EnableConfigurationProperties({DruidDataSourceProperties.class})
+//public class DruidConfig {
+//    @Autowired
+//    private DruidDataSourceProperties properties;
 //
-//    /**
-//     * 注册Filter信息, 监控拦截器
-//     *
-//     * @return
-//     */
 //    @Bean
 //    @ConditionalOnMissingBean
-//    public FilterRegistrationBean<Filter> filterRegistrationBean() {
-//        FilterRegistrationBean<Filter> filterRegistrationBean = new FilterRegistrationBean<Filter>();
-//        filterRegistrationBean.setFilter(new WebStatFilter());
-//        filterRegistrationBean.addUrlPatterns("/*");
-//        filterRegistrationBean.addInitParameter("exclusions", "*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*");
-//        return filterRegistrationBean;
+//    public DataSource druidDataSource() {
+//        DruidDataSource druidDataSource = new DruidDataSource();
+//        druidDataSource.setDriverClassName(properties.getDriverClassName());
+//        druidDataSource.setUrl(properties.getUrl());
+//        druidDataSource.setUsername(properties.getUsername());
+//        druidDataSource.setPassword(properties.getPassword());
+//        druidDataSource.setInitialSize(properties.getInitialSize());
+//        druidDataSource.setMinIdle(properties.getMinIdle());
+//        druidDataSource.setMaxActive(properties.getMaxActive());
+//        druidDataSource.setMaxWait(properties.getMaxWait());
+//        druidDataSource.setTimeBetweenEvictionRunsMillis(properties.getTimeBetweenEvictionRunsMillis());
+//        druidDataSource.setMinEvictableIdleTimeMillis(properties.getMinEvictableIdleTimeMillis());
+//        druidDataSource.setValidationQuery(properties.getValidationQuery());
+//        druidDataSource.setTestWhileIdle(properties.isTestWhileIdle());
+//        druidDataSource.setTestOnBorrow(properties.isTestOnBorrow());
+//        druidDataSource.setTestOnReturn(properties.isTestOnReturn());
+//        druidDataSource.setPoolPreparedStatements(properties.isPoolPreparedStatements());
+//        druidDataSource.setMaxPoolPreparedStatementPerConnectionSize(properties.getMaxPoolPreparedStatementPerConnectionSize());
+//
+//        try {
+//            druidDataSource.setFilters(properties.getFilters());
+//            druidDataSource.init();
+//        } catch (SQLException e) {
+//            e.printStackTrace();
+//        }
+//
+//        return druidDataSource;
 //    }
-}
+//
+////    /**
+////     * 注册Servlet信息, 配置监控视图
+////     *
+////     * @return
+////     */
+////    @Bean
+////    @ConditionalOnMissingBean
+////    public ServletRegistrationBean<Servlet> druidServlet() {
+////        ServletRegistrationBean<Servlet> servletRegistrationBean = new ServletRegistrationBean<Servlet>(new StatViewServlet(), "/druid/*");
+////
+////        //白名单:
+////        servletRegistrationBean.addInitParameter("allow","192.168.1.195");
+////        //IP黑名单 (存在共同时,deny优先于allow) : 如果满足deny的话提示:Sorry, you are not permitted to view this page.
+////        servletRegistrationBean.addInitParameter("deny","192.168.1.119");
+////        //登录查看信息的账号密码, 用于登录Druid监控后台
+////        servletRegistrationBean.addInitParameter("loginUsername", "admin");
+////        servletRegistrationBean.addInitParameter("loginPassword", "admin");
+////        //是否能够重置数据.
+////        servletRegistrationBean.addInitParameter("resetEnable", "true");
+////        return servletRegistrationBean;
+////
+////    }
+////
+////    /**
+////     * 注册Filter信息, 监控拦截器
+////     *
+////     * @return
+////     */
+////    @Bean
+////    @ConditionalOnMissingBean
+////    public FilterRegistrationBean<Filter> filterRegistrationBean() {
+////        FilterRegistrationBean<Filter> filterRegistrationBean = new FilterRegistrationBean<Filter>();
+////        filterRegistrationBean.setFilter(new WebStatFilter());
+////        filterRegistrationBean.addUrlPatterns("/*");
+////        filterRegistrationBean.addInitParameter("exclusions", "*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*");
+////        return filterRegistrationBean;
+////    }
+//}

+ 166 - 166
4dkankan-utils-db/src/main/java/com/fdkankan/db/config/DruidDataSourceProperties.java

@@ -1,166 +1,166 @@
-package com.fdkankan.db.config;
-
-import org.springframework.boot.context.properties.ConfigurationProperties;
-
-
-@ConfigurationProperties(prefix = "spring.datasource.druid")
-public class DruidDataSourceProperties {
-
-    // jdbc
-    private String driverClassName;
-    private String url;
-    private String username;
-    private String password;
-    // jdbc connection pool
-    private int initialSize;
-    private int minIdle;
-    private int maxActive = 100;
-    private long maxWait;
-    private long timeBetweenEvictionRunsMillis;
-    private long minEvictableIdleTimeMillis;
-    private String validationQuery;
-    private boolean testWhileIdle;
-    private boolean testOnBorrow;
-    private boolean testOnReturn;
-    private boolean poolPreparedStatements;
-    private int maxPoolPreparedStatementPerConnectionSize;
-    // filter
-    private String filters;
-
-    public int getInitialSize() {
-        return initialSize;
-    }
-
-    public void setInitialSize(int initialSize) {
-        this.initialSize = initialSize;
-    }
-
-    public int getMinIdle() {
-        return minIdle;
-    }
-
-    public void setMinIdle(int minIdle) {
-        this.minIdle = minIdle;
-    }
-
-    public int getMaxActive() {
-        return maxActive;
-    }
-
-    public void setMaxActive(int maxActive) {
-        this.maxActive = maxActive;
-    }
-
-    public long getMaxWait() {
-        return maxWait;
-    }
-
-    public void setMaxWait(long maxWait) {
-        this.maxWait = maxWait;
-    }
-
-    public long getTimeBetweenEvictionRunsMillis() {
-        return timeBetweenEvictionRunsMillis;
-    }
-
-    public void setTimeBetweenEvictionRunsMillis(long timeBetweenEvictionRunsMillis) {
-        this.timeBetweenEvictionRunsMillis = timeBetweenEvictionRunsMillis;
-    }
-
-    public long getMinEvictableIdleTimeMillis() {
-        return minEvictableIdleTimeMillis;
-    }
-
-    public void setMinEvictableIdleTimeMillis(long minEvictableIdleTimeMillis) {
-        this.minEvictableIdleTimeMillis = minEvictableIdleTimeMillis;
-    }
-
-    public String getValidationQuery() {
-        return validationQuery;
-    }
-
-    public void setValidationQuery(String validationQuery) {
-        this.validationQuery = validationQuery;
-    }
-
-    public boolean isTestWhileIdle() {
-        return testWhileIdle;
-    }
-
-    public void setTestWhileIdle(boolean testWhileIdle) {
-        this.testWhileIdle = testWhileIdle;
-    }
-
-    public boolean isTestOnBorrow() {
-        return testOnBorrow;
-    }
-
-    public void setTestOnBorrow(boolean testOnBorrow) {
-        this.testOnBorrow = testOnBorrow;
-    }
-
-    public boolean isTestOnReturn() {
-        return testOnReturn;
-    }
-
-    public void setTestOnReturn(boolean testOnReturn) {
-        this.testOnReturn = testOnReturn;
-    }
-
-    public boolean isPoolPreparedStatements() {
-        return poolPreparedStatements;
-    }
-
-    public void setPoolPreparedStatements(boolean poolPreparedStatements) {
-        this.poolPreparedStatements = poolPreparedStatements;
-    }
-
-    public int getMaxPoolPreparedStatementPerConnectionSize() {
-        return maxPoolPreparedStatementPerConnectionSize;
-    }
-
-    public void setMaxPoolPreparedStatementPerConnectionSize(int maxPoolPreparedStatementPerConnectionSize) {
-        this.maxPoolPreparedStatementPerConnectionSize = maxPoolPreparedStatementPerConnectionSize;
-    }
-
-    public String getFilters() {
-        return filters;
-    }
-
-    public void setFilters(String filters) {
-        this.filters = filters;
-    }
-
-    public String getDriverClassName() {
-        return driverClassName;
-    }
-
-    public void setDriverClassName(String driverClassName) {
-        this.driverClassName = driverClassName;
-    }
-
-    public String getUrl() {
-        return url;
-    }
-
-    public void setUrl(String url) {
-        this.url = url;
-    }
-
-    public String getUsername() {
-        return username;
-    }
-
-    public void setUsername(String username) {
-        this.username = username;
-    }
-
-    public String getPassword() {
-        return password;
-    }
-
-    public void setPassword(String password) {
-        this.password = password;
-    }
-
-}
+//package com.fdkankan.db.config;
+//
+//import org.springframework.boot.context.properties.ConfigurationProperties;
+//
+//
+//@ConfigurationProperties(prefix = "spring.datasource.druid")
+//public class DruidDataSourceProperties {
+//
+//    // jdbc
+//    private String driverClassName;
+//    private String url;
+//    private String username;
+//    private String password;
+//    // jdbc connection pool
+//    private int initialSize;
+//    private int minIdle;
+//    private int maxActive = 100;
+//    private long maxWait;
+//    private long timeBetweenEvictionRunsMillis;
+//    private long minEvictableIdleTimeMillis;
+//    private String validationQuery;
+//    private boolean testWhileIdle;
+//    private boolean testOnBorrow;
+//    private boolean testOnReturn;
+//    private boolean poolPreparedStatements;
+//    private int maxPoolPreparedStatementPerConnectionSize;
+//    // filter
+//    private String filters;
+//
+//    public int getInitialSize() {
+//        return initialSize;
+//    }
+//
+//    public void setInitialSize(int initialSize) {
+//        this.initialSize = initialSize;
+//    }
+//
+//    public int getMinIdle() {
+//        return minIdle;
+//    }
+//
+//    public void setMinIdle(int minIdle) {
+//        this.minIdle = minIdle;
+//    }
+//
+//    public int getMaxActive() {
+//        return maxActive;
+//    }
+//
+//    public void setMaxActive(int maxActive) {
+//        this.maxActive = maxActive;
+//    }
+//
+//    public long getMaxWait() {
+//        return maxWait;
+//    }
+//
+//    public void setMaxWait(long maxWait) {
+//        this.maxWait = maxWait;
+//    }
+//
+//    public long getTimeBetweenEvictionRunsMillis() {
+//        return timeBetweenEvictionRunsMillis;
+//    }
+//
+//    public void setTimeBetweenEvictionRunsMillis(long timeBetweenEvictionRunsMillis) {
+//        this.timeBetweenEvictionRunsMillis = timeBetweenEvictionRunsMillis;
+//    }
+//
+//    public long getMinEvictableIdleTimeMillis() {
+//        return minEvictableIdleTimeMillis;
+//    }
+//
+//    public void setMinEvictableIdleTimeMillis(long minEvictableIdleTimeMillis) {
+//        this.minEvictableIdleTimeMillis = minEvictableIdleTimeMillis;
+//    }
+//
+//    public String getValidationQuery() {
+//        return validationQuery;
+//    }
+//
+//    public void setValidationQuery(String validationQuery) {
+//        this.validationQuery = validationQuery;
+//    }
+//
+//    public boolean isTestWhileIdle() {
+//        return testWhileIdle;
+//    }
+//
+//    public void setTestWhileIdle(boolean testWhileIdle) {
+//        this.testWhileIdle = testWhileIdle;
+//    }
+//
+//    public boolean isTestOnBorrow() {
+//        return testOnBorrow;
+//    }
+//
+//    public void setTestOnBorrow(boolean testOnBorrow) {
+//        this.testOnBorrow = testOnBorrow;
+//    }
+//
+//    public boolean isTestOnReturn() {
+//        return testOnReturn;
+//    }
+//
+//    public void setTestOnReturn(boolean testOnReturn) {
+//        this.testOnReturn = testOnReturn;
+//    }
+//
+//    public boolean isPoolPreparedStatements() {
+//        return poolPreparedStatements;
+//    }
+//
+//    public void setPoolPreparedStatements(boolean poolPreparedStatements) {
+//        this.poolPreparedStatements = poolPreparedStatements;
+//    }
+//
+//    public int getMaxPoolPreparedStatementPerConnectionSize() {
+//        return maxPoolPreparedStatementPerConnectionSize;
+//    }
+//
+//    public void setMaxPoolPreparedStatementPerConnectionSize(int maxPoolPreparedStatementPerConnectionSize) {
+//        this.maxPoolPreparedStatementPerConnectionSize = maxPoolPreparedStatementPerConnectionSize;
+//    }
+//
+//    public String getFilters() {
+//        return filters;
+//    }
+//
+//    public void setFilters(String filters) {
+//        this.filters = filters;
+//    }
+//
+//    public String getDriverClassName() {
+//        return driverClassName;
+//    }
+//
+//    public void setDriverClassName(String driverClassName) {
+//        this.driverClassName = driverClassName;
+//    }
+//
+//    public String getUrl() {
+//        return url;
+//    }
+//
+//    public void setUrl(String url) {
+//        this.url = url;
+//    }
+//
+//    public String getUsername() {
+//        return username;
+//    }
+//
+//    public void setUsername(String username) {
+//        this.username = username;
+//    }
+//
+//    public String getPassword() {
+//        return password;
+//    }
+//
+//    public void setPassword(String password) {
+//        this.password = password;
+//    }
+//
+//}

+ 2 - 2
4dkankan-utils-dingtalk/pom.xml

@@ -5,7 +5,7 @@
     <parent>
         <artifactId>4dkankan-utils</artifactId>
         <groupId>com.fdkankan</groupId>
-        <version>2.0.0-SNAPSHOT</version>
+        <version>ZJ-2.0.0-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
@@ -23,7 +23,7 @@
         <dependency>
             <groupId>com.fdkankan</groupId>
             <artifactId>4dkankan-common-utils</artifactId>
-            <version>2.0.0-SNAPSHOT</version>
+            <version>ZJ-2.0.0-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.springframework</groupId>

+ 1 - 1
4dkankan-utils-email/pom.xml

@@ -5,7 +5,7 @@
     <parent>
         <artifactId>4dkankan-utils</artifactId>
         <groupId>com.fdkankan</groupId>
-        <version>2.0.0-SNAPSHOT</version>
+        <version>ZJ-2.0.0-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <version>1.0.0-SNAPSHOT</version>

+ 2 - 2
4dkankan-utils-fyun/pom.xml

@@ -5,7 +5,7 @@
     <parent>
         <artifactId>4dkankan-utils</artifactId>
         <groupId>com.fdkankan</groupId>
-        <version>2.0.0-SNAPSHOT</version>
+        <version>ZJ-2.0.0-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
@@ -17,7 +17,7 @@
         <dependency>
             <groupId>com.fdkankan</groupId>
             <artifactId>4dkankan-common-utils</artifactId>
-            <version>2.0.0-SNAPSHOT</version>
+            <version>ZJ-2.0.0-SNAPSHOT</version>
         </dependency>
 
         <dependency>

+ 1 - 1
4dkankan-utils-mongodb/pom.xml

@@ -5,7 +5,7 @@
     <parent>
         <artifactId>4dkankan-utils</artifactId>
         <groupId>com.fdkankan</groupId>
-        <version>2.0.0-SNAPSHOT</version>
+        <version>ZJ-2.0.0-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 

+ 1 - 1
4dkankan-utils-mq/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <groupId>com.fdkankan</groupId>
         <artifactId>4dkankan-utils</artifactId>
-        <version>2.0.0-SNAPSHOT</version>
+        <version>ZJ-2.0.0-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 

+ 1 - 1
4dkankan-utils-rabbitmq/pom.xml

@@ -5,7 +5,7 @@
   <parent>
     <artifactId>4dkankan-utils</artifactId>
     <groupId>com.fdkankan</groupId>
-    <version>2.0.0-SNAPSHOT</version>
+    <version>ZJ-2.0.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 

+ 1 - 1
4dkankan-utils-redis/pom.xml

@@ -6,7 +6,7 @@
     <parent>
         <groupId>com.fdkankan</groupId>
         <artifactId>4dkankan-utils</artifactId>
-        <version>2.0.0-SNAPSHOT</version>
+        <version>ZJ-2.0.0-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 

+ 2 - 2
4dkankan-utils-rubber-sheeting/pom.xml

@@ -5,7 +5,7 @@
     <parent>
         <artifactId>4dkankan-utils</artifactId>
         <groupId>com.fdkankan</groupId>
-        <version>2.0.0-SNAPSHOT</version>
+        <version>ZJ-2.0.0-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
@@ -15,7 +15,7 @@
         <dependency>
             <groupId>com.fdkankan</groupId>
             <artifactId>4dkankan-common-utils</artifactId>
-            <version>2.0.0-SNAPSHOT</version>
+            <version>ZJ-2.0.0-SNAPSHOT</version>
         </dependency>
     </dependencies>
 

+ 1 - 1
4dkankan-utils-sms/pom.xml

@@ -5,7 +5,7 @@
     <parent>
         <artifactId>4dkankan-utils</artifactId>
         <groupId>com.fdkankan</groupId>
-        <version>2.0.0-SNAPSHOT</version>
+        <version>ZJ-2.0.0-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 

+ 1 - 1
pom.xml

@@ -20,7 +20,7 @@
 
     <groupId>com.fdkankan</groupId>
     <artifactId>4dkankan-utils</artifactId>
-    <version>2.0.0-SNAPSHOT</version>
+    <version>ZJ-2.0.0-SNAPSHOT</version>
     <packaging>pom</packaging>