mirror of https://gitee.com/maxjhandsome/pig
【修改】 修改包名称
This commit is contained in:
parent
5f8fbfc5ad
commit
d451f2d07d
|
@ -1,4 +1,4 @@
|
|||
package com.github.pig;
|
||||
package com.github.pig.config;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
@ -1,4 +1,4 @@
|
|||
package com.github.pig;
|
||||
package com.github.pig.eureka;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
@ -1,4 +1,4 @@
|
|||
package com.github.pig;
|
||||
package com.github.pig.gateway;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
@ -1,4 +1,4 @@
|
|||
package com.github.pig;
|
||||
package com.github.pig.auth;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
@ -1,6 +1,6 @@
|
|||
package com.github.pig.controller;
|
||||
package com.github.pig.auth.controller;
|
||||
|
||||
import com.github.pig.service.AuthService;
|
||||
import com.github.pig.auth.service.AuthService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.http.ResponseEntity;
|
|
@ -1,4 +1,4 @@
|
|||
package com.github.pig.service;
|
||||
package com.github.pig.auth.service;
|
||||
|
||||
/**
|
||||
* @author lengleng
|
|
@ -1,4 +1,4 @@
|
|||
package com.github.pig.service;
|
||||
package com.github.pig.auth.service;
|
||||
|
||||
|
||||
import java.util.List;
|
|
@ -1,4 +1,4 @@
|
|||
package com.github.pig.service;
|
||||
package com.github.pig.auth.service;
|
||||
|
||||
import io.jsonwebtoken.Claims;
|
||||
import io.jsonwebtoken.Jwts;
|
|
@ -1,7 +1,7 @@
|
|||
package com.github.pig.service.impl;
|
||||
package com.github.pig.auth.service.impl;
|
||||
|
||||
import com.github.pig.service.AuthService;
|
||||
import com.github.pig.service.JwtTokenUtil;
|
||||
import com.github.pig.auth.service.AuthService;
|
||||
import com.github.pig.auth.service.JwtTokenUtil;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
Loading…
Reference in New Issue