Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
T
traffic-front
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangxiaoming
traffic-front
Commits
93353486
Commit
93353486
authored
Jun 05, 2018
by
neo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DEV] fix dBname to dbName
parent
a6606e1a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
AddProjectResult.java
.../java/pwc/taxtech/atms/dto/taxadmin/AddProjectResult.java
+5
-5
ProjectServiceImpl.java
...ava/pwc/taxtech/atms/service/impl/ProjectServiceImpl.java
+1
-1
framework.js
atms-web/src/main/webapp/bundles/framework.js
+1
-1
No files found.
atms-api/src/main/java/pwc/taxtech/atms/dto/taxadmin/AddProjectResult.java
View file @
93353486
package
pwc
.
taxtech
.
atms
.
dto
.
taxadmin
;
public
class
AddProjectResult
{
private
String
d
Bn
ame
;
private
String
d
bN
ame
;
private
String
projectID
;
private
Boolean
result
;
private
String
resultMsg
;
public
String
get
dBn
ame
()
{
return
d
Bn
ame
;
public
String
get
DbN
ame
()
{
return
d
bN
ame
;
}
public
void
set
dBname
(
String
dBn
ame
)
{
this
.
d
Bname
=
dBn
ame
;
public
void
set
DbName
(
String
dbN
ame
)
{
this
.
d
bName
=
dbN
ame
;
}
public
String
getProjectID
()
{
...
...
atms-api/src/main/java/pwc/taxtech/atms/service/impl/ProjectServiceImpl.java
View file @
93353486
...
...
@@ -206,7 +206,7 @@ public class ProjectServiceImpl implements ProjectService {
AddProjectResult
addProjectResult
=
new
AddProjectResult
();
addProjectResult
.
setResult
(
true
);
addProjectResult
.
set
dBn
ame
(
project
.
getDbName
());
addProjectResult
.
set
DbN
ame
(
project
.
getDbName
());
addProjectResult
.
setProjectID
(
project
.
getID
());
return
addProjectResult
;
}
catch
(
Exception
e
){
...
...
atms-web/src/main/webapp/bundles/framework.js
View file @
93353486
...
...
@@ -1697,7 +1697,7 @@ frameworkModule.controller('appOverviewController', ['$rootScope', '$scope', '$t
projectService
.
addProject
(
project
).
success
(
function
(
rsp
)
{
if
(
rsp
&&
rsp
.
result
)
{
project
.
haveCreateProject
=
true
;
project
.
dbName
=
rsp
.
d
Bn
ame
;
project
.
dbName
=
rsp
.
d
bN
ame
;
project
.
id
=
rsp
.
projectID
;
if
(
_
.
isNull
(
project
.
projectStatusList
))
{
//如果当前期间还没有导入任何数据的话,就添加一条未开始状态的记录
...
...
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