Commit 808953a7 authored by zhuangxinwei's avatar zhuangxinwei

小区封控,方舱人员管理导入字段修改

parent 40784cd7
......@@ -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;
}
......
......@@ -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;
}
......
......@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment