【修改】 修改包名称

This commit is contained in:
wangiegie@gmail.com 2017-10-18 21:01:42 +08:00
parent 5f8fbfc5ad
commit d451f2d07d
9 changed files with 12 additions and 12 deletions

View File

@ -1,4 +1,4 @@
package com.github.pig;
package com.github.pig.config;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

View File

@ -1,4 +1,4 @@
package com.github.pig;
package com.github.pig.eureka;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

View File

@ -1,4 +1,4 @@
package com.github.pig;
package com.github.pig.gateway;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

View File

@ -1,4 +1,4 @@
package com.github.pig;
package com.github.pig.auth;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

View File

@ -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;

View File

@ -1,4 +1,4 @@
package com.github.pig.service;
package com.github.pig.auth.service;
/**
* @author lengleng

View File

@ -1,4 +1,4 @@
package com.github.pig.service;
package com.github.pig.auth.service;
import java.util.List;

View File

@ -1,4 +1,4 @@
package com.github.pig.service;
package com.github.pig.auth.service;
import io.jsonwebtoken.Claims;
import io.jsonwebtoken.Jwts;

View File

@ -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;