package com.docus.server.collection.config; import lombok.Data; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; /** * 用户同步配置 * @author wyb */ @Data @Component public class UserSyncConfig { @Value("${docus.user.defpwd:}") private String password; }