【优化】优化团购秒杀数据返回内容,调整前端显示价格数据及增加团购秒杀策略提示。

This commit is contained in:
jianweie code
2023-11-12 21:54:43 +08:00
parent 5736f5a818
commit 26734139fb
5 changed files with 141 additions and 8 deletions

View File

@@ -3211,6 +3211,41 @@
所属团购秒杀
</summary>
</member>
<member name="P:CoreCms.Net.Model.Entities.CoreCmsGoods.groupType">
<summary>
团购秒杀类型
</summary>
</member>
<member name="P:CoreCms.Net.Model.Entities.CoreCmsGoods.groupStatus">
<summary>
团购秒杀状态
</summary>
</member>
<member name="P:CoreCms.Net.Model.Entities.CoreCmsGoods.groupTime">
<summary>
团购秒杀时效
</summary>
</member>
<member name="P:CoreCms.Net.Model.Entities.CoreCmsGoods.groupStartTime">
<summary>
团购秒杀开始时间
</summary>
</member>
<member name="P:CoreCms.Net.Model.Entities.CoreCmsGoods.groupEndTime">
<summary>
团购秒杀结束时间
</summary>
</member>
<member name="P:CoreCms.Net.Model.Entities.CoreCmsGoods.groupTimestamp">
<summary>
团购秒杀时间戳
</summary>
</member>
<member name="P:CoreCms.Net.Model.Entities.CoreCmsGoods.groupPromotionResult">
<summary>
团购秒杀促销结果
</summary>
</member>
<member name="P:CoreCms.Net.Model.Entities.CoreCmsGoods.minPrice">
<summary>
sku最小价格

View File

@@ -177,17 +177,47 @@ namespace CoreCms.Net.Model.Entities
[SugarColumn(IsIgnore = true)]
public int groupId { get; set; }
[SugarColumn(IsIgnore = true)] public int groupType { get; set; }
/// <summary>
/// 团购秒杀类型
/// </summary>
[SugarColumn(IsIgnore = true)]
public int groupType { get; set; }
[SugarColumn(IsIgnore = true)] public bool groupStatus { get; set; }
/// <summary>
/// 团购秒杀状态
/// </summary>
[SugarColumn(IsIgnore = true)]
public bool groupStatus { get; set; }
[SugarColumn(IsIgnore = true)] public DateTime groupTime { get; set; }
/// <summary>
/// 团购秒杀时效
/// </summary>
[SugarColumn(IsIgnore = true)]
public DateTime groupTime { get; set; }
[SugarColumn(IsIgnore = true)] public DateTime groupStartTime { get; set; }
/// <summary>
/// 团购秒杀开始时间
/// </summary>
[SugarColumn(IsIgnore = true)]
public DateTime groupStartTime { get; set; }
[SugarColumn(IsIgnore = true)] public DateTime groupEndTime { get; set; }
/// <summary>
/// 团购秒杀结束时间
/// </summary>
[SugarColumn(IsIgnore = true)]
public DateTime groupEndTime { get; set; }
[SugarColumn(IsIgnore = true)] public int groupTimestamp { get; set; }
/// <summary>
/// 团购秒杀时间戳
/// </summary>
[SugarColumn(IsIgnore = true)]
public int groupTimestamp { get; set; }
/// <summary>
/// 团购秒杀促销结果
/// </summary>
[SugarColumn(IsIgnore = true)]
public string groupPromotionResult { get; set; }
/// <summary>