feiyu02
2026-01-19 53ce8de426561e7a43847afda23b5e24e6f76c4e
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)
    }