Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
data_management_system
Project
Project
Details
Activity
Releases
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
张伯涛
data_management_system
Commits
808953a7
Commit
808953a7
authored
Nov 30, 2022
by
zhuangxinwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
小区封控,方舱人员管理导入字段修改
parent
40784cd7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
12 deletions
+34
-12
Fcry.java
ruoyi-system/src/main/java/com/ruoyi/system/domain/Fcry.java
+8
-10
FcryDTO.java
...system/src/main/java/com/ruoyi/system/domain/FcryDTO.java
+24
-0
FcryMapper.xml
ruoyi-system/src/main/resources/mapper/system/FcryMapper.xml
+2
-2
No files found.
ruoyi-system/src/main/java/com/ruoyi/system/domain/Fcry.java
View file @
808953a7
...
...
@@ -76,7 +76,14 @@ public class Fcry extends BaseEntity
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@Excel
(
name
=
"转入时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
zrTime
;
/** 从其他方舱转来时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@Excel
(
name
=
"从其他方舱转来时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
otherFcTime
;
/** 从其他隔离点转来时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@Excel
(
name
=
"从其他隔离点转来时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
otherGldTime
;
/** 转出时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@Excel
(
name
=
"转出时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd HH:mm:ss"
)
...
...
@@ -102,15 +109,6 @@ public class Fcry extends BaseEntity
private
String
value
;
/** 从其他隔离点转来时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
otherGldTime
;
/** 从其他方舱转来时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
otherFcTime
;
public
String
getRemark
()
{
return
remark
;
}
...
...
ruoyi-system/src/main/java/com/ruoyi/system/domain/FcryDTO.java
View file @
808953a7
...
...
@@ -75,6 +75,14 @@ public class FcryDTO extends BaseEntity
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@Excel
(
name
=
"转入时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
zrTime
;
/** 从其他方舱转来时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@Excel
(
name
=
"从其他方舱转来时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
otherFcTime
;
/** 从其他隔离点转来时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@Excel
(
name
=
"从其他隔离点转来时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
otherGldTime
;
/** 转出时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
...
...
@@ -93,6 +101,22 @@ public class FcryDTO extends BaseEntity
/** 删除标志(0代表存在 2代表删除) */
private
String
delFlag
;
public
Date
getOtherFcTime
()
{
return
otherFcTime
;
}
public
void
setOtherFcTime
(
Date
otherFcTime
)
{
this
.
otherFcTime
=
otherFcTime
;
}
public
Date
getOtherGldTime
()
{
return
otherGldTime
;
}
public
void
setOtherGldTime
(
Date
otherGldTime
)
{
this
.
otherGldTime
=
otherGldTime
;
}
public
String
getCommittee
()
{
return
committee
;
}
...
...
ruoyi-system/src/main/resources/mapper/system/FcryMapper.xml
View file @
808953a7
...
...
@@ -146,11 +146,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</insert>
<insert
id=
"insertBatchFcry"
parameterType=
"Fcry"
>
insert into fcry (fc_place,room,jz_name,card_no,phone,area,street,community,floor,
unit,doorplate,zr_time,zc_time,gl_place,create_by,create_time,remark,check_card,is_positive,positive_only,people_type) values
unit,doorplate,zr_time,zc_time,gl_place,create_by,create_time,remark,check_card,is_positive,positive_only,people_type
,other_fc_time,other_gld_time
) values
<foreach
item=
"item"
index=
"index"
collection=
"list"
separator=
","
>
(#{item.fcPlace},#{item.room},#{item.jzName},#{item.cardNo},#{item.phone},#{item.area},#{item.street},#{item.community},#{item.floor},
#{item.unit},#{item.doorplate},#{item.zrTime},#{item.zcTime},#{item.glPlace},#{item.createBy},
#{item.createTime},#{item.remark},#{item.checkCard},#{item.isPositive},#{item.positiveOnly},#{item.peopleType})
#{item.createTime},#{item.remark},#{item.checkCard},#{item.isPositive},#{item.positiveOnly},#{item.peopleType}
,#{item.otherFcTime},#{item.otherGldTime}
)
</foreach>
</insert>
...
...
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