From 53ce8de426561e7a43847afda23b5e24e6f76c4e Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期一, 19 一月 2026 17:29:55 +0800 Subject: [PATCH] 2026.1.19 1. 新增可配置的台账提交期限 2. 新增可配置的自巡查承诺 --- src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/UserBaseInfo.kt | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 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 989b9ed..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,8 +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.* import com.fasterxml.jackson.annotation.JsonInclude /** @@ -11,9 +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 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