Compare commits

...

6 Commits
0.1.3 ... 0.1.6

Author SHA1 Message Date
曾文豪
e862cdbf43 publish 0.1.6 2023-01-11 16:32:29 +08:00
曾文豪
d6faed4f68 perf:调整授权登录 2023-01-11 16:32:16 +08:00
曾文豪
ec4b0cbb1e publish 0.1.5 2023-01-11 16:25:38 +08:00
曾文豪
30fd68d430 perf:调整授权登录 2023-01-11 16:25:27 +08:00
曾文豪
ec865471cb publish 0.1.4 2023-01-11 15:46:14 +08:00
曾文豪
7d454e9c62 perf:调整授权登录 2023-01-11 15:46:02 +08:00
14 changed files with 40 additions and 39 deletions

20
pom.xml
View File

@@ -6,7 +6,7 @@
<groupId>com.tiesheng</groupId>
<artifactId>springboot-parent</artifactId>
<version>0.1.3</version>
<version>0.1.6</version>
<packaging>pom</packaging>
<name>springboot-parent</name>
<description>杭州铁晟科技有限公司基础依赖</description>
@@ -57,55 +57,55 @@
<dependency>
<groupId>com.tiesheng</groupId>
<artifactId>springboot-db-migration</artifactId>
<version>0.1.3</version>
<version>0.1.6</version>
</dependency>
<dependency>
<groupId>com.tiesheng</groupId>
<artifactId>springboot-login</artifactId>
<version>0.1.3</version>
<version>0.1.6</version>
</dependency>
<dependency>
<groupId>com.tiesheng</groupId>
<artifactId>springboot-web</artifactId>
<version>0.1.3</version>
<version>0.1.6</version>
</dependency>
<dependency>
<groupId>com.tiesheng</groupId>
<artifactId>springboot-util</artifactId>
<version>0.1.3</version>
<version>0.1.6</version>
</dependency>
<dependency>
<groupId>com.tiesheng</groupId>
<artifactId>springboot-platform</artifactId>
<version>0.1.3</version>
<version>0.1.6</version>
</dependency>
<dependency>
<groupId>com.tiesheng</groupId>
<artifactId>springboot-message</artifactId>
<version>0.1.3</version>
<version>0.1.6</version>
</dependency>
<dependency>
<groupId>com.tiesheng</groupId>
<artifactId>springboot-encrypt</artifactId>
<version>0.1.3</version>
<version>0.1.6</version>
</dependency>
<dependency>
<groupId>com.tiesheng</groupId>
<artifactId>springboot-annotation</artifactId>
<version>0.1.3</version>
<version>0.1.6</version>
</dependency>
<dependency>
<groupId>com.tiesheng</groupId>
<artifactId>springboot-poi</artifactId>
<version>0.1.3</version>
<version>0.1.6</version>
</dependency>
<dependency>

View File

@@ -6,7 +6,7 @@
<parent>
<groupId>com.tiesheng</groupId>
<artifactId>springboot-parent</artifactId>
<version>0.1.3</version>
<version>0.1.6</version>
</parent>
<artifactId>springboot-ademo</artifactId>

View File

@@ -6,7 +6,7 @@
<parent>
<groupId>com.tiesheng</groupId>
<artifactId>springboot-parent</artifactId>
<version>0.1.3</version>
<version>0.1.6</version>
</parent>
<artifactId>springboot-annotation</artifactId>

View File

@@ -6,7 +6,7 @@
<parent>
<groupId>com.tiesheng</groupId>
<artifactId>springboot-parent</artifactId>
<version>0.1.3</version>
<version>0.1.6</version>
</parent>
<artifactId>springboot-db-migration</artifactId>

View File

@@ -6,7 +6,7 @@
<parent>
<groupId>com.tiesheng</groupId>
<artifactId>springboot-parent</artifactId>
<version>0.1.3</version>
<version>0.1.6</version>
</parent>
<artifactId>springboot-encrypt</artifactId>

View File

@@ -6,7 +6,7 @@
<parent>
<groupId>com.tiesheng</groupId>
<artifactId>springboot-parent</artifactId>
<version>0.1.3</version>
<version>0.1.6</version>
</parent>
<artifactId>springboot-login</artifactId>

View File

@@ -1,10 +1,9 @@
package com.tiesheng.login.pojos;
public class CodeExtraDTO {
public class CodeExtraDTO extends LoginToInfo {
private String code;
private String extra;
private String to;
///////////////////////////////////////////////////////////////////////////
// setter\getter
@@ -26,11 +25,4 @@ public class CodeExtraDTO {
this.extra = extra;
}
public String getTo() {
return to;
}
public void setTo(String to) {
this.to = to;
}
}

View File

@@ -0,0 +1,18 @@
package com.tiesheng.login.pojos;
public class LoginToInfo {
private String to;
///////////////////////////////////////////////////////////////////////////
// setter\getter
///////////////////////////////////////////////////////////////////////////
public String getTo() {
return to;
}
public void setTo(String to) {
this.to = to;
}
}

View File

@@ -2,10 +2,9 @@ package com.tiesheng.login.pojos;
import cn.hutool.core.util.StrUtil;
public class UniqueIndexDTO {
public class UniqueIndexDTO extends LoginToInfo {
private String no;
private String to;
private String extra;
private String info;
@@ -21,14 +20,6 @@ public class UniqueIndexDTO {
this.no = no;
}
public String getTo() {
return to;
}
public void setTo(String to) {
this.to = to;
}
public String getExtra() {
if (StrUtil.isEmpty(extra)) {
extra = "";

View File

@@ -6,7 +6,7 @@
<parent>
<groupId>com.tiesheng</groupId>
<artifactId>springboot-parent</artifactId>
<version>0.1.3</version>
<version>0.1.6</version>
</parent>
<artifactId>springboot-message</artifactId>

View File

@@ -6,7 +6,7 @@
<parent>
<groupId>com.tiesheng</groupId>
<artifactId>springboot-parent</artifactId>
<version>0.1.3</version>
<version>0.1.6</version>
</parent>
<artifactId>springboot-platform</artifactId>

View File

@@ -6,7 +6,7 @@
<parent>
<groupId>com.tiesheng</groupId>
<artifactId>springboot-parent</artifactId>
<version>0.1.3</version>
<version>0.1.6</version>
</parent>
<artifactId>springboot-poi</artifactId>

View File

@@ -6,7 +6,7 @@
<parent>
<groupId>com.tiesheng</groupId>
<artifactId>springboot-parent</artifactId>
<version>0.1.3</version>
<version>0.1.6</version>
</parent>
<artifactId>springboot-util</artifactId>

View File

@@ -6,7 +6,7 @@
<parent>
<groupId>com.tiesheng</groupId>
<artifactId>springboot-parent</artifactId>
<version>0.1.3</version>
<version>0.1.6</version>
</parent>
<artifactId>springboot-web</artifactId>