|
@@ -12,6 +12,7 @@ import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
import lombok.experimental.Accessors;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import org.jeecg.common.aspect.annotation.Dict;
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
|
|
@@ -43,11 +44,11 @@ public class SyCertificates {
|
|
|
@ApiModelProperty(value = "创建日期")
|
|
|
private Date createTime;
|
|
|
|
|
|
- @Excel(name = "更新人登录名称", width = 15)
|
|
|
+
|
|
|
@ApiModelProperty(value = "更新人登录名称")
|
|
|
private String updateBy;
|
|
|
|
|
|
- @Excel(name = "更新日期", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+
|
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
@ApiModelProperty(value = "更新日期")
|
|
@@ -57,7 +58,9 @@ public class SyCertificates {
|
|
|
@ApiModelProperty(value = "证件名称")
|
|
|
private String name;
|
|
|
|
|
|
- @Excel(name = "证件所有人(到期通知人)", width = 15)
|
|
|
+ @Excel(name = "证件所有人", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username")
|
|
|
+
|
|
|
+
|
|
|
@ApiModelProperty(value = "证件所有人(到期通知人)")
|
|
|
private String userId;
|
|
|
|
|
@@ -77,7 +80,8 @@ public class SyCertificates {
|
|
|
@ApiModelProperty(value = "到期时间")
|
|
|
private Date endDate;
|
|
|
|
|
|
- @Excel(name = "管理人(到期通知人)", width = 15)
|
|
|
+ @Excel(name = "管理人", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username")
|
|
|
+
|
|
|
@ApiModelProperty(value = "管理人(到期通知人)")
|
|
|
private String manageId;
|
|
|
|
|
@@ -92,11 +96,11 @@ public class SyCertificates {
|
|
|
@ApiModelProperty(value = "附件")
|
|
|
private String enclosure;
|
|
|
|
|
|
- @Excel(name = "是否邮件通知(1是 0否)", width = 15)
|
|
|
+
|
|
|
@ApiModelProperty(value = "是否邮件通知(1是 0否)")
|
|
|
private String isMessage;
|
|
|
|
|
|
- @Excel(name = "删除标记", width = 15)
|
|
|
+
|
|
|
@ApiModelProperty(value = "删除标记")
|
|
|
private String delFlag;
|
|
|
|