feat: 临时授权记录-新增授权日期字段 翻译部分字段
This commit is contained in:
+9
@@ -2,6 +2,7 @@ package com.jero.modules.laws.standard.controller;
|
||||
|
||||
import cn.hutool.core.util.StrUtil;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.jero.common.aspect.annotation.Dict;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
@@ -31,6 +32,12 @@ public class TempAuthRecordQueryDto {
|
||||
@ApiModelProperty(value = "授权到期日期")
|
||||
private Date authExpireDate;
|
||||
|
||||
/**授权日期*/
|
||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
||||
@DateTimeFormat(pattern="yyyy-MM-dd")
|
||||
@ApiModelProperty(value = "授权日期")
|
||||
private Date createTime;
|
||||
|
||||
/**授权到期日期*/
|
||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
||||
@DateTimeFormat(pattern="yyyy-MM-dd")
|
||||
@@ -44,10 +51,12 @@ public class TempAuthRecordQueryDto {
|
||||
private Date endAuthExpireDate;
|
||||
|
||||
/**授权部门*/
|
||||
@Dict(dictTable = "sys_depart", dicCode = "id", dicText = "depart_name")
|
||||
@ApiModelProperty(value = "授权部门")
|
||||
private String authDept;
|
||||
|
||||
/**授权人员*/
|
||||
@Dict(dictTable = "sys_user", dicCode = "id", dicText = "realname")
|
||||
@ApiModelProperty(value = "授权人员")
|
||||
private String authUser;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user