Commit 809c697c authored by 黄奎's avatar 黄奎

新增字段

parent d6fb6d7f
...@@ -591,13 +591,18 @@ namespace Mall.Model.Entity.Product ...@@ -591,13 +591,18 @@ namespace Mall.Model.Entity.Product
public string GoodsCountry { get; set; } public string GoodsCountry { get; set; }
/// <summary> /// <summary>
/// 海关代码/关税率 /// 商品地址
/// </summary> /// </summary>
public string FatCode { get; set; } public string FatCode { get; set; }
/// <summary> /// <summary>
/// 官网 /// 商品简介
/// </summary> /// </summary>
public string GoodsUrl { get; set; } public string GoodsUrl { get; set; }
/// <summary>
/// 商品Logo
/// </summary>
public string goodsLogo { get; set; }
} }
} }
...@@ -340,6 +340,11 @@ namespace Mall.Model.Extend.MarketingCenter ...@@ -340,6 +340,11 @@ namespace Mall.Model.Extend.MarketingCenter
/// 模板数据 /// 模板数据
/// </summary> /// </summary>
public object TemplateData { get; set; } public object TemplateData { get; set; }
/// <summary>
/// 是否显示
/// </summary>
public int isShow { get; set; }
} }
......
...@@ -2585,7 +2585,8 @@ namespace Mall.Module.Product ...@@ -2585,7 +2585,8 @@ namespace Mall.Module.Product
video_type = model.VideoType, video_type = model.VideoType,
goods_country=model.GoodsCountry, goods_country=model.GoodsCountry,
fatcode=model.FatCode, fatcode=model.FatCode,
goodsurl= model.GoodsUrl goodsurl= model.GoodsUrl,
goodsLogo=model.goodsLogo,
}, },
delivery = "" delivery = ""
}; };
...@@ -7052,6 +7053,7 @@ namespace Mall.Module.Product ...@@ -7052,6 +7053,7 @@ namespace Mall.Module.Product
{ nameof(RB_Goods.GoodsCountry),demodel.GoodsCountry }, { nameof(RB_Goods.GoodsCountry),demodel.GoodsCountry },
{ nameof(RB_Goods.FatCode),demodel.FatCode }, { nameof(RB_Goods.FatCode),demodel.FatCode },
{ nameof(RB_Goods.GoodsUrl),demodel.GoodsUrl }, { nameof(RB_Goods.GoodsUrl),demodel.GoodsUrl },
{ nameof(RB_Goods.goodsLogo),demodel.goodsLogo },
}; };
if (goodsModel.IsProcurement == 1) if (goodsModel.IsProcurement == 1)
{ {
......
...@@ -1781,7 +1781,8 @@ namespace Mall.WebApi.Controllers.MallBase ...@@ -1781,7 +1781,8 @@ namespace Mall.WebApi.Controllers.MallBase
model?.IntegralCommentType, model?.IntegralCommentType,
model?.GoodsCountry, model?.GoodsCountry,
model?.FatCode, model?.FatCode,
model?.GoodsUrl model?.GoodsUrl,
model?.goodsLogo,
}; };
} }
return ApiResult.Success("", obj); return ApiResult.Success("", obj);
......
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