Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
Y
YX_IDENT_beijing_auxiliary_YD
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_beijing_auxiliary_YD
Commits
815a5744
Commit
815a5744
authored
Mar 08, 2019
by
liboyang
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
ed89356f
247ca55a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
243 additions
and
64 deletions
+243
-64
TaskListApi.java
src/main/java/com/yxproject/start/api/TaskListApi.java
+5
-5
TaskEntity.java
src/main/java/com/yxproject/start/entity/TaskEntity.java
+137
-37
TaskListMapper.java
src/main/java/com/yxproject/start/mapper/TaskListMapper.java
+63
-11
TaskListService.java
...ain/java/com/yxproject/start/service/TaskListService.java
+1
-1
TaskListServiceImpl.java
...com/yxproject/start/service/impl/TaskListServiceImpl.java
+37
-10
No files found.
src/main/java/com/yxproject/start/api/TaskListApi.java
View file @
815a5744
...
...
@@ -78,13 +78,14 @@ public class TaskListApi {
/**
* 更改任务单状态
* (用于任务单下发)
* @param taskId
* @param taskId 任务单ID
* @param name 下发人姓名
* @param process 下发人所在工序
* @return
*/
@RequestMapping
(
"updateState"
)
public
boolean
updateState
(
@RequestParam
String
taskId
){
taskListService
.
updateState
(
taskId
);
return
true
;
public
boolean
updateState
(
@RequestParam
(
"taskId"
)
String
taskId
,
@RequestParam
(
"process"
)
String
process
,
@RequestParam
(
"name"
)
String
name
){
return
taskListService
.
updateState
(
taskId
,
process
,
name
);
}
/**
...
...
@@ -129,7 +130,6 @@ public class TaskListApi {
public
List
<
Object
>
queryByCountyAtAuxiliary
(
@RequestParam
(
"process"
)
String
process
,
HttpServletResponse
resp
){
List
<
Object
>
objects
=
taskListService
.
selectByCountyAtAuxiliary
(
process
);
return
objects
;
}
...
...
src/main/java/com/yxproject/start/entity/TaskEntity.java
View file @
815a5744
...
...
@@ -2,42 +2,52 @@ package com.yxproject.start.entity;
import
javax.persistence.*
;
import
java.sql.Time
;
import
java.util.Date
;
import
java.util.Objects
;
/**
* @auther zhangyusheng
* 2019/3/8 16:18
*/
@Entity
@Table
(
name
=
"TASK"
,
schema
=
"YINGXIN"
,
catalog
=
""
)
public
class
TaskEntity
{
private
long
taskId
;
private
Long
cardType
;
private
Long
oldCardType
;
private
String
countyCode
;
private
Dat
e
submitDate
;
private
Tim
e
submitDate
;
private
String
submitName
;
private
Dat
e
issuedDate
;
private
Tim
e
issuedDate
;
private
String
issuedName
;
private
Dat
e
downloadDate
;
private
Tim
e
downloadDate
;
private
String
downloadName
;
private
Dat
e
printOutDate
;
private
Tim
e
printOutDate
;
private
String
printOutName
;
private
Dat
e
positionDate
;
private
Tim
e
positionDate
;
private
String
positionName
;
private
Dat
e
outWorkshopDate
;
private
Tim
e
outWorkshopDate
;
private
String
outWorkshopName
;
private
String
qualityTestName
;
private
Dat
e
qualityTestDate
;
private
Tim
e
qualityTestDate
;
private
String
exceptionInformation
;
private
Dat
e
outStorageDate
;
private
Tim
e
outStorageDate
;
private
String
outStorageName
;
private
Dat
e
inStorageDate
;
private
Tim
e
inStorageDate
;
private
String
inStorageName
;
private
Long
taskStateId
;
private
Long
isException
;
private
Long
printerId
;
private
Long
beginPageNumber
;
private
Long
finishPageNumber
;
private
Date
sortOntDate
;
private
Time
sortOutDate
;
private
Time
concoraCrushDate
;
private
String
concoraCrushName
;
private
Time
punchingDate
;
private
String
punchingName
;
private
Time
sortingDate
;
private
String
sortingName
;
private
Time
connectDate
;
private
String
connectName
;
@Id
@Column
(
name
=
"TASK_ID"
)
...
...
@@ -81,11 +91,11 @@ public class TaskEntity {
@Basic
@Column
(
name
=
"SUBMIT_DATE"
)
public
Dat
e
getSubmitDate
()
{
public
Tim
e
getSubmitDate
()
{
return
submitDate
;
}
public
void
setSubmitDate
(
Dat
e
submitDate
)
{
public
void
setSubmitDate
(
Tim
e
submitDate
)
{
this
.
submitDate
=
submitDate
;
}
...
...
@@ -101,11 +111,11 @@ public class TaskEntity {
@Basic
@Column
(
name
=
"ISSUED_DATE"
)
public
Dat
e
getIssuedDate
()
{
public
Tim
e
getIssuedDate
()
{
return
issuedDate
;
}
public
void
setIssuedDate
(
Dat
e
issuedDate
)
{
public
void
setIssuedDate
(
Tim
e
issuedDate
)
{
this
.
issuedDate
=
issuedDate
;
}
...
...
@@ -121,11 +131,11 @@ public class TaskEntity {
@Basic
@Column
(
name
=
"DOWNLOAD_DATE"
)
public
Dat
e
getDownloadDate
()
{
public
Tim
e
getDownloadDate
()
{
return
downloadDate
;
}
public
void
setDownloadDate
(
Dat
e
downloadDate
)
{
public
void
setDownloadDate
(
Tim
e
downloadDate
)
{
this
.
downloadDate
=
downloadDate
;
}
...
...
@@ -141,11 +151,11 @@ public class TaskEntity {
@Basic
@Column
(
name
=
"PRINT_OUT_DATE"
)
public
Dat
e
getPrintOutDate
()
{
public
Tim
e
getPrintOutDate
()
{
return
printOutDate
;
}
public
void
setPrintOutDate
(
Dat
e
printOutDate
)
{
public
void
setPrintOutDate
(
Tim
e
printOutDate
)
{
this
.
printOutDate
=
printOutDate
;
}
...
...
@@ -161,11 +171,11 @@ public class TaskEntity {
@Basic
@Column
(
name
=
"POSITION_DATE"
)
public
Dat
e
getPositionDate
()
{
public
Tim
e
getPositionDate
()
{
return
positionDate
;
}
public
void
setPositionDate
(
Dat
e
positionDate
)
{
public
void
setPositionDate
(
Tim
e
positionDate
)
{
this
.
positionDate
=
positionDate
;
}
...
...
@@ -181,11 +191,11 @@ public class TaskEntity {
@Basic
@Column
(
name
=
"OUT_WORKSHOP_DATE"
)
public
Dat
e
getOutWorkshopDate
()
{
public
Tim
e
getOutWorkshopDate
()
{
return
outWorkshopDate
;
}
public
void
setOutWorkshopDate
(
Dat
e
outWorkshopDate
)
{
public
void
setOutWorkshopDate
(
Tim
e
outWorkshopDate
)
{
this
.
outWorkshopDate
=
outWorkshopDate
;
}
...
...
@@ -211,11 +221,11 @@ public class TaskEntity {
@Basic
@Column
(
name
=
"QUALITY_TEST_DATE"
)
public
Dat
e
getQualityTestDate
()
{
public
Tim
e
getQualityTestDate
()
{
return
qualityTestDate
;
}
public
void
setQualityTestDate
(
Dat
e
qualityTestDate
)
{
public
void
setQualityTestDate
(
Tim
e
qualityTestDate
)
{
this
.
qualityTestDate
=
qualityTestDate
;
}
...
...
@@ -231,11 +241,11 @@ public class TaskEntity {
@Basic
@Column
(
name
=
"OUT_STORAGE_DATE"
)
public
Dat
e
getOutStorageDate
()
{
public
Tim
e
getOutStorageDate
()
{
return
outStorageDate
;
}
public
void
setOutStorageDate
(
Dat
e
outStorageDate
)
{
public
void
setOutStorageDate
(
Tim
e
outStorageDate
)
{
this
.
outStorageDate
=
outStorageDate
;
}
...
...
@@ -251,11 +261,11 @@ public class TaskEntity {
@Basic
@Column
(
name
=
"IN_STORAGE_DATE"
)
public
Dat
e
getInStorageDate
()
{
public
Tim
e
getInStorageDate
()
{
return
inStorageDate
;
}
public
void
setInStorageDate
(
Dat
e
inStorageDate
)
{
public
void
setInStorageDate
(
Tim
e
inStorageDate
)
{
this
.
inStorageDate
=
inStorageDate
;
}
...
...
@@ -318,13 +328,95 @@ public class TaskEntity {
public
void
setFinishPageNumber
(
Long
finishPageNumber
)
{
this
.
finishPageNumber
=
finishPageNumber
;
}
@Basic
@Column
(
name
=
"SORT_OUT_DATE"
)
public
Date
getSortOntDate
()
{
return
sortOntDate
;
public
Time
getSortOutDate
()
{
return
sortOutDate
;
}
public
void
setSortOutDate
(
Time
sortOutDate
)
{
this
.
sortOutDate
=
sortOutDate
;
}
@Basic
@Column
(
name
=
"CONCORA_CRUSH_DATE"
)
public
Time
getConcoraCrushDate
()
{
return
concoraCrushDate
;
}
public
void
setConcoraCrushDate
(
Time
concoraCrushDate
)
{
this
.
concoraCrushDate
=
concoraCrushDate
;
}
@Basic
@Column
(
name
=
"CONCORA_CRUSH_NAME"
)
public
String
getConcoraCrushName
()
{
return
concoraCrushName
;
}
public
void
setConcoraCrushName
(
String
concoraCrushName
)
{
this
.
concoraCrushName
=
concoraCrushName
;
}
@Basic
@Column
(
name
=
"PUNCHING_DATE"
)
public
Time
getPunchingDate
()
{
return
punchingDate
;
}
public
void
setPunchingDate
(
Time
punchingDate
)
{
this
.
punchingDate
=
punchingDate
;
}
@Basic
@Column
(
name
=
"PUNCHING_NAME"
)
public
String
getPunchingName
()
{
return
punchingName
;
}
public
void
setSortOntDate
(
Date
sortOntDate
)
{
this
.
sortOntDate
=
sortOntDate
;
public
void
setPunchingName
(
String
punchingName
)
{
this
.
punchingName
=
punchingName
;
}
@Basic
@Column
(
name
=
"SORTING_DATE"
)
public
Time
getSortingDate
()
{
return
sortingDate
;
}
public
void
setSortingDate
(
Time
sortingDate
)
{
this
.
sortingDate
=
sortingDate
;
}
@Basic
@Column
(
name
=
"SORTING_NAME"
)
public
String
getSortingName
()
{
return
sortingName
;
}
public
void
setSortingName
(
String
sortingName
)
{
this
.
sortingName
=
sortingName
;
}
@Basic
@Column
(
name
=
"CONNECT_DATE"
)
public
Time
getConnectDate
()
{
return
connectDate
;
}
public
void
setConnectDate
(
Time
connectDate
)
{
this
.
connectDate
=
connectDate
;
}
@Basic
@Column
(
name
=
"CONNECT_NAME"
)
public
String
getConnectName
()
{
return
connectName
;
}
public
void
setConnectName
(
String
connectName
)
{
this
.
connectName
=
connectName
;
}
@Override
...
...
@@ -359,12 +451,20 @@ public class TaskEntity {
Objects
.
equals
(
isException
,
that
.
isException
)
&&
Objects
.
equals
(
printerId
,
that
.
printerId
)
&&
Objects
.
equals
(
beginPageNumber
,
that
.
beginPageNumber
)
&&
Objects
.
equals
(
sortOntDate
,
that
.
sortOntDate
)
&&
Objects
.
equals
(
finishPageNumber
,
that
.
finishPageNumber
);
Objects
.
equals
(
finishPageNumber
,
that
.
finishPageNumber
)
&&
Objects
.
equals
(
sortOutDate
,
that
.
sortOutDate
)
&&
Objects
.
equals
(
concoraCrushDate
,
that
.
concoraCrushDate
)
&&
Objects
.
equals
(
concoraCrushName
,
that
.
concoraCrushName
)
&&
Objects
.
equals
(
punchingDate
,
that
.
punchingDate
)
&&
Objects
.
equals
(
punchingName
,
that
.
punchingName
)
&&
Objects
.
equals
(
sortingDate
,
that
.
sortingDate
)
&&
Objects
.
equals
(
sortingName
,
that
.
sortingName
)
&&
Objects
.
equals
(
connectDate
,
that
.
connectDate
)
&&
Objects
.
equals
(
connectName
,
that
.
connectName
);
}
@Override
public
int
hashCode
()
{
return
Objects
.
hash
(
taskId
,
cardType
,
oldCardType
,
countyCode
,
submitDate
,
submitName
,
issuedDate
,
issuedName
,
downloadDate
,
downloadName
,
printOutDate
,
printOutName
,
positionDate
,
positionName
,
outWorkshopDate
,
outWorkshopName
,
qualityTestName
,
qualityTestDate
,
exceptionInformation
,
outStorageDate
,
outStorageName
,
sortOntDate
,
inStorageDate
,
inStorageName
,
taskStateId
,
isException
,
printerId
,
beginPageNumber
,
finishPageNumber
);
return
Objects
.
hash
(
taskId
,
cardType
,
oldCardType
,
countyCode
,
submitDate
,
submitName
,
issuedDate
,
issuedName
,
downloadDate
,
downloadName
,
printOutDate
,
printOutName
,
positionDate
,
positionName
,
outWorkshopDate
,
outWorkshopName
,
qualityTestName
,
qualityTestDate
,
exceptionInformation
,
outStorageDate
,
outStorageName
,
inStorageDate
,
inStorageName
,
taskStateId
,
isException
,
printerId
,
beginPageNumber
,
finishPageNumber
,
sortOutDate
,
concoraCrushDate
,
concoraCrushName
,
punchingDate
,
punchingName
,
sortingDate
,
sortingName
,
connectDate
,
connectName
);
}
}
src/main/java/com/yxproject/start/mapper/TaskListMapper.java
View file @
815a5744
...
...
@@ -2,7 +2,6 @@ package com.yxproject.start.mapper;
import
com.yxproject.start.entity.TaskEntity
;
import
com.yxproject.start.entity.TaskList.CountCountyEntity
;
import
com.yxproject.start.entity.TaskList.CountGajgEntity
;
import
com.yxproject.start.entity.TaskList.TaskListEntity
;
import
org.apache.ibatis.annotations.*
;
...
...
@@ -198,22 +197,75 @@ public interface TaskListMapper {
public
List
<
TaskListEntity
>
selectACCU
(
@Param
(
"submitDate"
)
String
submitDate
,
@Param
(
"countyCode"
)
String
countyCode
,
@Param
(
"Gajg_dm"
)
String
Gajg
);
// /**
// * 生成任务单
// * @param taskListEntityMap
// * @return
// */
// @Insert("INSERT INTO TASK (CARD_TYPE,OLD_CARD_TYPE,COUNTY_CODE,TASK_STATE_ID)VALUES(1,1,#{countyCode},0)")
// public boolean createTaskList(List<TaskListEntity> taskListEntityMap);
/**
*更改任务单状态
* 下发
* @param taskId
* @return
*/
//todo 编写上传工序SQL
@Update
(
"UPDATE TASK SET TASK_STATE_ID=#{process},ISSUED_NAME=#{name} WHERE TASK_ID = #{taskId} "
)
public
boolean
updateState1
(
@Param
(
"taskId"
)
String
taskId
,
@Param
(
"process"
)
String
process
,
@Param
(
"name"
)
String
name
);
/**
*更改任务单状态
* 膜打印
* @param taskId
* @return
*/
//todo 编写上传工序SQL
@Update
(
"UPDATE TASK SET TASK_STATE_ID=#{process},PRINT_OUT_NAME=#{name} WHERE TASK_ID = #{taskId} "
)
public
boolean
updateState2
(
@Param
(
"taskId"
)
String
taskId
,
@Param
(
"process"
)
String
process
,
@Param
(
"name"
)
String
name
);
/**
*更改任务单状态
* 预订位
* @param taskId
* @return
*/
//todo 编写上传工序SQL
@Update
(
"UPDATE TASK SET TASK_STATE_ID=#{process},POSITION_NAME=#{name} WHERE TASK_ID = #{taskId} "
)
public
boolean
updateState3
(
@Param
(
"taskId"
)
String
taskId
,
@Param
(
"process"
)
String
process
,
@Param
(
"name"
)
String
name
);
/**
*更改任务单状态
* 平压
* @param taskId
* @return
*/
//todo 编写上传工序SQL
@Update
(
"UPDATE TASK SET TASK_STATE_ID=#{process},CONCORA_CRUSH_NAME=#{name} WHERE TASK_ID = #{taskId} "
)
public
boolean
updateState4
(
@Param
(
"taskId"
)
String
taskId
,
@Param
(
"process"
)
String
process
,
@Param
(
"name"
)
String
name
);
/**
*更改任务单状态
* 冲切
* @param taskId
* @return
*/
//todo 编写上传工序SQL
@Update
(
"UPDATE TASK SET TASK_STATE_ID=#{process},PUNCHING_NAME=#{name} WHERE TASK_ID = #{taskId} "
)
public
boolean
updateState5
(
@Param
(
"taskId"
)
String
taskId
,
@Param
(
"process"
)
String
process
,
@Param
(
"name"
)
String
name
);
/**
*更改任务单状态
* 分拣
* @param taskId
* @return
*/
//todo 编写上传工序SQL
@Update
(
"UPDATE TASK SET TASK_STATE_ID=#{process},SORTING_NAME=#{name} WHERE TASK_ID = #{taskId} "
)
public
boolean
updateState6
(
@Param
(
"taskId"
)
String
taskId
,
@Param
(
"process"
)
String
process
,
@Param
(
"name"
)
String
name
);
/**
*更改任务单状态
* 交接
* @param taskId
* @return
*/
//todo
更改状态
@Update
(
"UPDATE TASK SET TASK_STATE_ID=
1
WHERE TASK_ID = #{taskId} "
)
public
boolean
updateState
(
@Param
(
"taskId"
)
String
taskId
,
@Param
(
"process"
)
String
process
,
@Param
(
"name"
)
String
name
);
//todo
编写上传工序SQL
@Update
(
"UPDATE TASK SET TASK_STATE_ID=
#{process},CONNECT_NAME=#{name}
WHERE TASK_ID = #{taskId} "
)
public
boolean
updateState
7
(
@Param
(
"taskId"
)
String
taskId
,
@Param
(
"process"
)
String
process
,
@Param
(
"name"
)
String
name
);
}
src/main/java/com/yxproject/start/service/TaskListService.java
View file @
815a5744
...
...
@@ -18,7 +18,7 @@ public interface TaskListService {
public
boolean
createTaskList
(
List
<
TaskListEntity
>
resultMap
);
public
boolean
updateState
(
String
taskId
);
public
boolean
updateState
(
String
taskId
,
String
process
,
String
name
);
public
List
<
Object
>
selectByCountyAtACCU
(
String
date
);
...
...
src/main/java/com/yxproject/start/service/impl/TaskListServiceImpl.java
View file @
815a5744
...
...
@@ -52,8 +52,32 @@ public class TaskListServiceImpl implements TaskListService {
}
@Override
public
boolean
updateState
(
String
taskId
)
{
// taskListMapper.updateState(taskId);
public
boolean
updateState
(
String
taskId
,
String
process
,
String
name
)
{
switch
(
process
){
case
"1"
:
taskListMapper
.
updateState1
(
taskId
,
process
,
name
);
break
;
case
"2"
:
taskListMapper
.
updateState2
(
taskId
,
process
,
name
);
break
;
case
"3"
:
taskListMapper
.
updateState3
(
taskId
,
process
,
name
);
break
;
case
"4"
:
taskListMapper
.
updateState4
(
taskId
,
process
,
name
);
break
;
case
"5"
:
taskListMapper
.
updateState5
(
taskId
,
process
,
name
);
break
;
case
"6"
:
taskListMapper
.
updateState6
(
taskId
,
process
,
name
);
break
;
case
"7"
:
taskListMapper
.
updateState7
(
taskId
,
process
,
name
);
break
;
default
:
break
;
}
return
true
;
}
...
...
@@ -312,19 +336,19 @@ public class TaskListServiceImpl implements TaskListService {
typeMap
.
put
(
o
.
get
(
"CARD_TYPE"
)+
""
,
mapList
);
}
}
//将已按制证分好的Map 再次细化分为
区县
Map
//将已按制证分好的Map 再次细化分为
任务单
Map
for
(
String
type:
typeMap
.
keySet
()){
List
<
Map
<
String
,
Object
>>
mapList
=
(
List
<
Map
<
String
,
Object
>>)
typeMap
.
get
(
type
);
Map
<
String
,
Object
>
typemap
=
new
LinkedHashMap
<>();
for
(
Map
<
String
,
Object
>
o:
mapList
){
if
(
typemap
!=
null
&&
typemap
.
containsKey
(
o
.
get
(
"
COUNTY_CODE
"
)+
""
)){
List
<
Map
<
String
,
Object
>>
maplist_county
=
(
List
<
Map
<
String
,
Object
>>)
typemap
.
get
(
o
.
get
(
"
COUNTY_CODE
"
));
if
(
typemap
!=
null
&&
typemap
.
containsKey
(
o
.
get
(
"
TASK_ID
"
)+
""
)){
List
<
Map
<
String
,
Object
>>
maplist_county
=
(
List
<
Map
<
String
,
Object
>>)
typemap
.
get
(
o
.
get
(
"
TASK_ID
"
));
maplist_county
.
add
(
o
);
typemap
.
put
(
o
.
get
(
"
COUNTY_CODE
"
)+
""
,
maplist_county
);
typemap
.
put
(
o
.
get
(
"
TASK_ID
"
)+
""
,
maplist_county
);
}
else
{
List
<
Map
<
String
,
Object
>>
maplist_county
=
new
ArrayList
<>();
maplist_county
.
add
(
o
);
typemap
.
put
(
o
.
get
(
"
COUNTY_CODE
"
)+
""
,
maplist_county
);
typemap
.
put
(
o
.
get
(
"
TASK_ID
"
)+
""
,
maplist_county
);
}
}
typeMap
.
put
(
type
,
typemap
);
...
...
@@ -336,17 +360,19 @@ public class TaskListServiceImpl implements TaskListService {
String
typeName
=
null
;
List
<
Map
<
String
,
Object
>>
countyList
=
new
ArrayList
<>();
Map
<
String
,
List
<
Map
<
String
,
Object
>>>
mapList
=
(
Map
<
String
,
List
<
Map
<
String
,
Object
>>>)
typeMap
.
get
(
type
);
for
(
String
county
:
mapList
.
keySet
()){
for
(
String
taskId
:
mapList
.
keySet
()){
Map
<
String
,
Object
>
countyMapGroup
=
new
LinkedHashMap
<>();
int
validCount
=
0
;
int
invalidCount
=
0
;
int
specialCount
=
0
;
int
faileCount
=
0
;
String
countyName
=
null
;
String
countyCode
=
null
;
Object
submitDate
=
null
;
List
<
Map
<
String
,
Object
>>
countyMapList
=
mapList
.
get
(
county
);
List
<
Map
<
String
,
Object
>>
countyMapList
=
mapList
.
get
(
taskId
);
for
(
Map
<
String
,
Object
>
countyMap:
countyMapList
){
submitDate
=
countyMap
.
get
(
"SUBMIT_DATE"
);
countyCode
=
countyMap
.
get
(
"COUNTY_CODE"
)+
""
;
countyName
=
countyMap
.
get
(
"COUNTYNAME"
)+
""
;
typeName
=
countyMap
.
get
(
"CARD_TYPE_ID"
)
+
""
;
typeSum
+=
Integer
.
valueOf
(
countyMap
.
get
(
"VALID_COUNT"
)
+
""
);
...
...
@@ -378,7 +404,8 @@ public class TaskListServiceImpl implements TaskListService {
}
countyMapGroup
.
put
(
"faileCount"
,
faileCount
);
countyMapGroup
.
put
(
"specialCount"
,
specialCount
);
countyMapGroup
.
put
(
"countyCode"
,
county
);
countyMapGroup
.
put
(
"countyCode"
,
countyCode
);
countyMapGroup
.
put
(
"taskId"
,
taskId
);
countyMapGroup
.
put
(
"groupList"
,
countyMapList
);
countyMapGroup
.
put
(
"saveDate"
,
submitDate
);
countyMapGroup
.
put
(
"countyName"
,
countyName
);
...
...
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