Commit d80aaf4c authored by 吴春's avatar 吴春

tij

parent e2aa46eb
......@@ -394,6 +394,17 @@ namespace Mall.Common
return new ConfigurationBuilder().Add(new JsonConfigurationSource { Path = "appsettings.json" }).Build().GetSection("IncomeBranchId").Value;
}
}
/// <summary>
/// 收款创建人部门
/// </summary>
public static string IncomeDepartment
{
get
{
return new ConfigurationBuilder().Add(new JsonConfigurationSource { Path = "appsettings.json" }).Build().GetSection("IncomeDepartment").Value;
}
}
/// <summary>
/// 付款创建人的id,用于新建供应商账户的时候的创建人
/// </summary>
......@@ -416,6 +427,18 @@ namespace Mall.Common
}
}
/// <summary>
/// 付款创建人部门
/// </summary>
public static string ExpendDepartment
{
get
{
return new ConfigurationBuilder().Add(new JsonConfigurationSource { Path = "appsettings.json" }).Build().GetSection("ExpendDepartment").Value;
}
}
/// <summary>
/// 数据库地址
/// </summary>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment