You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
334 B
Java
17 lines
334 B
Java
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;
|
|
}
|