Commit c3287f24 authored by liudong1993's avatar liudong1993

订单微店字段

parent 4fe32389
...@@ -95,7 +95,10 @@ namespace Mall.Common.API ...@@ -95,7 +95,10 @@ namespace Mall.Common.API
/// erp集团id /// erp集团id
/// </summary> /// </summary>
public int ERPGroupId { get; set; } public int ERPGroupId { get; set; }
/// <summary>
/// 微店id
/// </summary>
public int SmallShopsId { get; set; }
/// <summary> /// <summary>
/// token信息 /// token信息
/// </summary> /// </summary>
......
...@@ -303,5 +303,10 @@ namespace Mall.Model.Entity.Product ...@@ -303,5 +303,10 @@ namespace Mall.Model.Entity.Product
/// 主播名称(多个以逗号分隔) /// 主播名称(多个以逗号分隔)
/// </summary> /// </summary>
public string AnchorName { get; set; } public string AnchorName { get; set; }
/// <summary>
/// 微店id
/// </summary>
public int? SmallShopsId { get; set; }
} }
} }
...@@ -234,5 +234,9 @@ namespace Mall.Model.Entity.Product ...@@ -234,5 +234,9 @@ namespace Mall.Model.Entity.Product
/// 分类包邮规则备注 /// 分类包邮规则备注
/// </summary> /// </summary>
public string FreeShippingRemarks { get; set; } public string FreeShippingRemarks { get; set; }
/// <summary>
/// 微店成本价格
/// </summary>
public decimal? SmallShopsCostPrice { get; set; }
} }
} }
...@@ -15,6 +15,10 @@ namespace Mall.Model.Extend.Product ...@@ -15,6 +15,10 @@ namespace Mall.Model.Extend.Product
[DB(ConnectionName = "DefaultConnection")] [DB(ConnectionName = "DefaultConnection")]
public class RB_Goods_Extend : RB_Goods public class RB_Goods_Extend : RB_Goods
{ {
/// <summary>
/// 微店id
/// </summary>
public int? SmallShopsId { get; set; }
/// <summary> /// <summary>
/// 推荐商品类型 1商品详情页 2订单完成后 3评论后 /// 推荐商品类型 1商品详情页 2订单完成后 3评论后
/// </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