新框架PDA后端(祈禧6月初版本)
南骏 池
2025-11-25 770f02888443c1be46549f164abfd3be78a3dbd3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace NewPdaSqlServer.util;
 
public class AppsettingsUtility
{
    public static AppSettings Settings { get; private set; }
 
    public void Initial(IConfiguration configuration)
    {
        var myOwn = new AppSettings();
        //注意:可以使用冒号来获取内层的配置项
        myOwn.TestErpUrl = configuration["AppSettings:TestErpUrl"];
        myOwn.ProductionErpUrl = configuration["AppSettings:ProductionErpUrl"];
        myOwn.DataBaseConn = configuration["AppSettings:DataBaseConn"];
        myOwn.ImageUploadUrl = configuration["AppSettings:ImageUploadUrl"];
        Settings = myOwn;
    }
}