lyh
10 天以前 30c9299fa9ffc8d3cd51d4a18b4c0b33c3ef8141
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.lxzn.framework.utils;
 
import com.baomidou.mybatisplus.core.toolkit.StringUtils;
import org.springframework.beans.factory.annotation.Value;
 
public class UserIdUtil {
    @Value("${user.userIdYml}")
    private static String userIdYml;
 
    public static  String selectUserIdAdmin() {
        if (StringUtils.isEmpty(userIdYml)) {
            userIdYml = "1254966905669160962";
        }
        return userIdYml;
    }
}