Commit 31118fd4 authored by liuxun's avatar liuxun

merge

parent 649d094a
......@@ -131,6 +131,8 @@ public class ChSuperviseOrgan implements Serializable {
/**
* 首次操作时间
*/
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date fcd;
/**
......@@ -156,4 +158,4 @@ public class ChSuperviseOrgan implements Serializable {
private String contactMail;
private static final long serialVersionUID = 1L;
}
\ No newline at end of file
}
......@@ -97,6 +97,7 @@ public class SuperviseOrganServiceImpl extends ServiceImpl<SuperviseOrganMapper,
//新增
spvOrgan.setIsLock((short) 0);
spvOrgan.setEffTime(new Date());
spvOrgan.setFcd(new Date());
superviseOrganMapper.insert(spvOrgan);
}
}
......
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