From 196bb14112448857a885e32dc4149e308e00b01a Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期四, 15 八月 2024 11:57:15 +0800 Subject: [PATCH] 2024.8.15 各项修正 --- src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/UserBaseInfo.kt | 18 ++++++++---------- 1 files changed, 8 insertions(+), 10 deletions(-) diff --git a/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/UserBaseInfo.kt b/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/UserBaseInfo.kt index f795b96..bab35ae 100644 --- a/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/UserBaseInfo.kt +++ b/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/UserBaseInfo.kt @@ -1,9 +1,6 @@ package cn.flightfeather.supervision.lightshare.vo -import cn.flightfeather.supervision.domain.entity.BaseInfo -import cn.flightfeather.supervision.domain.entity.BaseSpecialInfo -import cn.flightfeather.supervision.domain.entity.Company -import cn.flightfeather.supervision.domain.entity.PersonalInfo +import cn.flightfeather.supervision.domain.entity.* import com.fasterxml.jackson.annotation.JsonInclude /** @@ -12,10 +9,11 @@ */ @JsonInclude(JsonInclude.Include.NON_NULL) data class UserBaseInfo( - val userId: String, - val name: String? = null, - val baseInfo: BaseInfo? = null, - val company: Company? = null, - val specialInfo: BaseSpecialInfo? = null, - val personalInfo: PersonalInfo? = null + val userId: String? = null, + val name: String? = null, + val userInfo: Userinfo? = null, + val baseInfo: BaseInfo? = null, + val company: Company? = null, + val specialInfo: BaseSpecialInfo? = null, + val personalInfo: PersonalInfo? = null, ) \ No newline at end of file -- Gitblit v1.9.3