src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/AuthSceneVo.kt
@@ -27,12 +27,12 @@ /** * 生成新的场景基础信息对象 */ fun toNewBaseInfo(newUser: Userinfo, cInfo:Company?) = BaseInfo().apply { biGuid = newUser.guid fun toNewBaseInfo(newUser: Userinfo?, cInfo:Company?) = BaseInfo().apply { biGuid = newUser?.guid ciGuid = cInfo?.ciGuid ciName = cInfo?.ciName biCreateTime = Date() biExtension1 = newUser.acountname biExtension1 = newUser?.acountname updateBaseInfo(this) }