From 8e8c3113eea4c29a6c5a23ca35c4d460e81f3465 Mon Sep 17 00:00:00 2001 From: 钟日健 <5689795+arsn@user.noreply.gitee.com> Date: Thu, 24 Feb 2022 09:47:03 +0800 Subject: [PATCH] 暂停模拟考试后,继续考试修改,状态修改为考试中,题目查询按本次模拟考试题目排序,接口放行 --- 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