Commit e00e687f authored by 吴春's avatar 吴春

1

parent 183ee16e
...@@ -22,5 +22,10 @@ namespace Mall.Model.Extend.TradePavilion ...@@ -22,5 +22,10 @@ namespace Mall.Model.Extend.TradePavilion
/// ids /// ids
/// </summary> /// </summary>
public string SelectIds { get; set; } public string SelectIds { get; set; }
/// <summary>
/// 收藏id
/// </summary>
public int CollectId { get; set; }
} }
} }
...@@ -3225,7 +3225,7 @@ namespace Mall.WebApi.Controllers.TradePavilion ...@@ -3225,7 +3225,7 @@ namespace Mall.WebApi.Controllers.TradePavilion
} }
var result = new var result = new
{ {
CollectId = 0, CollectId ,
ServiceId = extModel?.ServiceId ?? 0, ServiceId = extModel?.ServiceId ?? 0,
Name = extModel?.Name ?? "", Name = extModel?.Name ?? "",
Introduction = extModel?.Introduction ?? "", Introduction = extModel?.Introduction ?? "",
...@@ -3244,7 +3244,7 @@ namespace Mall.WebApi.Controllers.TradePavilion ...@@ -3244,7 +3244,7 @@ namespace Mall.WebApi.Controllers.TradePavilion
RentFee = extModel?.RentFee ?? 0, RentFee = extModel?.RentFee ?? 0,
BannerList = extModel?.BannerList ?? new List<string>(), BannerList = extModel?.BannerList ?? new List<string>(),
}; };
return ApiResult.Success(data: extModel); return ApiResult.Success(data: result);
} }
#endregion #endregion
......
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