|
@@ -10,6 +10,7 @@ import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.diagbot.enums.AuthStatusEnum;
|
|
|
import com.diagbot.enums.OrganizationTypeEnum;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import lombok.Getter;
|
|
|
import lombok.Setter;
|
|
|
|
|
@@ -26,12 +27,14 @@ public class UserInfoDTO implements Serializable {
|
|
|
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
|
private Long userId;//用户ID
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm")
|
|
|
private Date userGmtCreate;//记录创建时间
|
|
|
private String userName;// 用户名
|
|
|
private String linKman;//联系人
|
|
|
private String email;// 邮箱
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
|
private Long orgId;//机构ID
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm")
|
|
|
private Date orgGmtCreate;//记录创建时间
|
|
|
private String orgName;//机构名称
|
|
|
private Integer orgType;//机构属性
|