tangzy
2021-08-14 0def57184505c841d374323a192157677c725273
1.许可审批
3 files modified
6 ■■■■ changed files
src/main/java/org/springblade/modules/record/entity/Record.java 3 ●●●● patch | view | raw | blame | history
src/main/java/org/springblade/modules/record/mapper/RecordMapper.xml 1 ●●●● patch | view | raw | blame | history
src/main/java/org/springblade/modules/system/controller/UserController.java 2 ●●●●● patch | view | raw | blame | history
src/main/java/org/springblade/modules/record/entity/Record.java
@@ -62,7 +62,7 @@
    /**
     * 成立日期
     */
    @ApiModelProperty(value = "成立日期")
    @ApiModelProperty(value = "注册时间")
    @TableField("establishTime")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
@@ -155,6 +155,7 @@
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date permitime;
    private String reason;
    private String examinetime;
}
src/main/java/org/springblade/modules/record/mapper/RecordMapper.xml
@@ -26,6 +26,7 @@
        <result column="deptid" property="deptid"/>
        <result column="permitime" property="permitime"/>
        <result column="ptype" property="ptype"/>
        <result column="examinetime" property="examinetime"/>
    </resultMap>
src/main/java/org/springblade/modules/system/controller/UserController.java
@@ -375,4 +375,6 @@
        return R.data(list);
    }
}