Commit 321b7962 authored by 黄奎's avatar 黄奎

页面修改

parent fd9cd272
...@@ -37,10 +37,9 @@ namespace Mall.Common ...@@ -37,10 +37,9 @@ namespace Mall.Common
public readonly static IConfiguration Configuration; public readonly static IConfiguration Configuration;
static Config() static Config()
{ {
Configuration = new ConfigurationBuilder() Configuration= new ConfigurationBuilder()
.SetBasePath(Directory.GetCurrentDirectory()) .Add(new JsonConfigurationSource { Path = "appsettings.json", ReloadOnChange = true })
.AddJsonFile("appsettings.json", optional: true) .Build();
.Build();
} }
/// <summary> /// <summary>
......
...@@ -17,5 +17,15 @@ namespace Mall.Model.Extend.Product ...@@ -17,5 +17,15 @@ namespace Mall.Model.Extend.Product
/// 商品编号 /// 商品编号
/// </summary> /// </summary>
public string GoodIds { get; set; } public string GoodIds { get; set; }
/// <summary>
/// 等级列表
/// </summary>
public List<RB_GroupBuy_Distributioncommission_Extend> GradeCommissionList { get; set; }
/// <summary>
/// 规格值列表
/// </summary>
public object AttrList { get; set; }
} }
} }
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