Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
Y
YX_IDENT_REFACTORING
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
zhangyusheng
YX_IDENT_REFACTORING
Commits
01dc90ed
Commit
01dc90ed
authored
Dec 18, 2018
by
Administrator
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新组号列表的实体
parent
85e0aabd
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
10 deletions
+12
-10
GroupNoEntity.java
src/main/java/com/yxproject/start/entity/GroupNoEntity.java
+8
-8
TaskServiceImpl.java
...ava/com/yxproject/start/service/impl/TaskServiceImpl.java
+1
-1
cycleSheet.js
...main/resources/static/tpl/layout/cycleSheet/cycleSheet.js
+3
-1
制证调度系统—概要设计说明书.doc
制证调度系统—概要设计说明书.doc
+0
-0
制证调度系统—测试分析报告.doc
制证调度系统—测试分析报告.doc
+0
-0
No files found.
src/main/java/com/yxproject/start/entity/GroupNoEntity.java
View file @
01dc90ed
...
@@ -11,7 +11,7 @@ import java.util.Objects;
...
@@ -11,7 +11,7 @@ import java.util.Objects;
public
class
GroupNoEntity
{
public
class
GroupNoEntity
{
private
long
task_Id
;
private
long
task_Id
;
private
String
group_No
;
private
String
group_No
;
private
long
va
il
d_Count
;
private
long
va
li
d_Count
;
private
long
invalid_Count
;
private
long
invalid_Count
;
private
long
special_Card_Count
;
private
long
special_Card_Count
;
...
@@ -34,13 +34,13 @@ public class GroupNoEntity {
...
@@ -34,13 +34,13 @@ public class GroupNoEntity {
this
.
group_No
=
group_No
;
this
.
group_No
=
group_No
;
}
}
@Basic
@Basic
@Column
(
name
=
"VA
IL
D_COUNT"
,
nullable
=
false
,
precision
=
0
)
@Column
(
name
=
"VA
LI
D_COUNT"
,
nullable
=
false
,
precision
=
0
)
public
long
getVa
il
d_Count
()
{
public
long
getVa
li
d_Count
()
{
return
va
il
d_Count
;
return
va
li
d_Count
;
}
}
public
void
setVa
ild_Count
(
long
vail
d_Count
)
{
public
void
setVa
lid_Count
(
long
vali
d_Count
)
{
this
.
va
ild_Count
=
vail
d_Count
;
this
.
va
lid_Count
=
vali
d_Count
;
}
}
@Basic
@Basic
@Column
(
name
=
"INVALID_COUNT"
,
nullable
=
false
,
precision
=
0
)
@Column
(
name
=
"INVALID_COUNT"
,
nullable
=
false
,
precision
=
0
)
...
@@ -65,7 +65,7 @@ public class GroupNoEntity {
...
@@ -65,7 +65,7 @@ public class GroupNoEntity {
if
(
this
==
o
)
{
return
true
;}
if
(
this
==
o
)
{
return
true
;}
if
(
o
==
null
||
getClass
()
!=
o
.
getClass
()){
return
false
;}
if
(
o
==
null
||
getClass
()
!=
o
.
getClass
()){
return
false
;}
GroupNoEntity
that
=
(
GroupNoEntity
)
o
;
GroupNoEntity
that
=
(
GroupNoEntity
)
o
;
return
va
ild_Count
==
that
.
vail
d_Count
&&
return
va
lid_Count
==
that
.
vali
d_Count
&&
invalid_Count
==
that
.
invalid_Count
&&
invalid_Count
==
that
.
invalid_Count
&&
special_Card_Count
==
that
.
special_Card_Count
&&
special_Card_Count
==
that
.
special_Card_Count
&&
task_Id
==
that
.
task_Id
&&
task_Id
==
that
.
task_Id
&&
...
@@ -74,6 +74,6 @@ public class GroupNoEntity {
...
@@ -74,6 +74,6 @@ public class GroupNoEntity {
@Override
@Override
public
int
hashCode
()
{
public
int
hashCode
()
{
return
Objects
.
hash
(
group_No
,
task_Id
,
va
il
d_Count
,
invalid_Count
,
special_Card_Count
);
return
Objects
.
hash
(
group_No
,
task_Id
,
va
li
d_Count
,
invalid_Count
,
special_Card_Count
);
}
}
}
}
src/main/java/com/yxproject/start/service/impl/TaskServiceImpl.java
View file @
01dc90ed
...
@@ -209,7 +209,7 @@ public class TaskServiceImpl implements TaskService {
...
@@ -209,7 +209,7 @@ public class TaskServiceImpl implements TaskService {
groupNoEntity1
.
setTask_Id
(
taskEntity
.
getTask_Id
());
groupNoEntity1
.
setTask_Id
(
taskEntity
.
getTask_Id
());
groupNoEntity1
.
setGroup_No
(
group_no
.
toString
());
groupNoEntity1
.
setGroup_No
(
group_no
.
toString
());
groupNoEntity1
.
setInvalid_Count
(
Long
.
valueOf
(
invalid_count
.
toString
()));
groupNoEntity1
.
setInvalid_Count
(
Long
.
valueOf
(
invalid_count
.
toString
()));
groupNoEntity1
.
setVa
il
d_Count
(
Long
.
valueOf
(
valid_count
.
toString
()));
groupNoEntity1
.
setVa
li
d_Count
(
Long
.
valueOf
(
valid_count
.
toString
()));
groupNoEntity1
.
setSpecial_Card_Count
((
long
)
1
);
groupNoEntity1
.
setSpecial_Card_Count
((
long
)
1
);
groupNoMapper
.
insertGroupNoEntity
(
groupNoEntity1
);
groupNoMapper
.
insertGroupNoEntity
(
groupNoEntity1
);
...
...
src/main/resources/static/tpl/layout/cycleSheet/cycleSheet.js
View file @
01dc90ed
...
@@ -122,7 +122,7 @@ app.controller('cycleSheetCtrl', ['$scope', '$rootScope', '$http', '$state', '$f
...
@@ -122,7 +122,7 @@ app.controller('cycleSheetCtrl', ['$scope', '$rootScope', '$http', '$state', '$f
{
typeCode
:
0
,
typeCount
:
5000
,
typeName
:
'普通证'
},
{
typeCode
:
0
,
typeCount
:
5000
,
typeName
:
'普通证'
},
{
typeCode
:
1
,
typeCount
:
5000
,
typeName
:
'邮寄证'
},
{
typeCode
:
1
,
typeCount
:
5000
,
typeName
:
'邮寄证'
},
{
typeCode
:
2
,
typeCount
:
5000
,
typeName
:
'特殊证'
},
{
typeCode
:
2
,
typeCount
:
5000
,
typeName
:
'特殊证'
},
{
typeCode
:
9
,
typeCount
:
5000
,
typeName
:
'异地证'
}
,
{
typeCode
:
9
,
typeCount
:
5000
,
typeName
:
'异地证'
}
]
]
$scope
.
cityList
=
[
$scope
.
cityList
=
[
{
{
...
@@ -324,6 +324,8 @@ app.controller('cycleSheetCtrl', ['$scope', '$rootScope', '$http', '$state', '$f
...
@@ -324,6 +324,8 @@ app.controller('cycleSheetCtrl', ['$scope', '$rootScope', '$http', '$state', '$f
}
}
]
]
$scope
.
receiptList
=
[[
358
,
0
,
0
,
0
,
82
,
0
,
0
,
1
,
0
,
205
,
646
,
3
,
"郑州 辖区"
,
"410101"
],
[
721
,
0
,
0
,
0
,
20
,
0
,
0
,
7
,
1
,
91
,
840
,
4
,
"郑州 中原"
,
"410102"
],]
$scope
.
showtable
=
-
1
;
$scope
.
showtable
=
-
1
;
$scope
.
showTable
=
function
(
taskID
)
{
$scope
.
showTable
=
function
(
taskID
)
{
if
(
$scope
.
showtable
!=
taskID
)
{
if
(
$scope
.
showtable
!=
taskID
)
{
...
...
制证调度系统—概要设计说明书.doc
View file @
01dc90ed
No preview for this file type
制证调度系统—测试分析报告.doc
View file @
01dc90ed
No preview for this file type
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