From dc61b0c48dbcf1c085c1ec955450989105a4a14f Mon Sep 17 00:00:00 2001 From: 钟日健 <5689795+arsn@user.noreply.gitee.com> Date: Thu, 17 Feb 2022 16:19:52 +0800 Subject: [PATCH] 1. 辖区tree 接口新增修改 2. 材料上传接口修改,去除licet_id 3. 材料展示接口修改,对接大数据平台,通过读取请求头参数来返回相应的请求参数 --- src/main/java/org/springblade/modules/record/entity/Record.java | 34 +++++++++++++++++++++++++++++++++- 1 files changed, 33 insertions(+), 1 deletions(-) diff --git a/src/main/java/org/springblade/modules/record/entity/Record.java b/src/main/java/org/springblade/modules/record/entity/Record.java index e796d9f..02cd6e1 100644 --- a/src/main/java/org/springblade/modules/record/entity/Record.java +++ b/src/main/java/org/springblade/modules/record/entity/Record.java @@ -154,13 +154,45 @@ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date permitime; private String approve; - private String examinetime; private String cardid; private String representativecell; private String contacts; private String contactscell; private String storage; private String jurisdiction; + //派出所审批 + private String papprove; + //县审批 + private String xapprove; + //市审批 + private String sapprove; + //派出意见 + private String popinion; + //县意见 + private String xopinion; + //市意见 + private String sopinion; + + @ApiModelProperty(value = "审批时间") + @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") + @DateTimeFormat(pattern = "yyyy-MM-dd") + private Date overtime; + + + @ApiModelProperty(value = "派出所审批时间") + @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date ptime; + + @ApiModelProperty(value = "县审批时间") + @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date stime; + + @ApiModelProperty(value = "市审批时间") + @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date xtime; } -- Gitblit v1.9.3