Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
chnmuseum-party
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liqin
chnmuseum-party
Commits
b7aafeca
Commit
b7aafeca
authored
Mar 18, 2021
by
liqin
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug fixed
parent
815ab9d1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
64 deletions
+3
-64
HttpResult.java
...n/java/cn/wisenergy/chnmuseum/party/model/HttpResult.java
+0
-64
logback.xml
src/main/resources/logback.xml
+3
-0
No files found.
src/main/java/cn/wisenergy/chnmuseum/party/model/HttpResult.java
deleted
100644 → 0
View file @
815ab9d1
package
cn
.
wisenergy
.
chnmuseum
.
party
.
model
;
public
class
HttpResult
{
private
String
token_type
;
private
String
access_token
;
private
String
refresh_token
;
private
String
expires_in
;
private
String
errcode
;
private
String
errmsg
;
public
String
getToken_type
()
{
return
token_type
;
}
public
void
setToken_type
(
String
token_type
)
{
this
.
token_type
=
token_type
;
}
public
String
getAccess_token
()
{
return
access_token
;
}
public
void
setAccess_token
(
String
access_token
)
{
this
.
access_token
=
access_token
;
}
public
String
getRefresh_token
()
{
return
refresh_token
;
}
public
void
setRefresh_token
(
String
refresh_token
)
{
this
.
refresh_token
=
refresh_token
;
}
public
String
getExpires_in
()
{
return
expires_in
;
}
public
void
setExpires_in
(
String
expires_in
)
{
this
.
expires_in
=
expires_in
;
}
public
String
getErrcode
()
{
return
errcode
;
}
public
void
setErrcode
(
String
errcode
)
{
this
.
errcode
=
errcode
;
}
public
String
getErrmsg
()
{
return
errmsg
;
}
public
void
setErrmsg
(
String
errmsg
)
{
this
.
errmsg
=
errmsg
;
}
}
src/main/resources/logback.xml
View file @
b7aafeca
<?xml version="1.0" encoding="UTF-8"?>
<configuration
debug=
"false"
scan=
"true"
scanPeriod=
"1000 seconds"
>
<property
name=
"LOG_HOME"
value=
"/opt/log"
/>
<!-- Output to Console -->
<appender
name=
"Console"
class=
"ch.qos.logback.core.ConsoleAppender"
>
<encoder>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment