接口端【新增】:服务商品详情增加销售数量字段数据返回。

This commit is contained in:
jianweie code
2024-11-18 22:19:18 +08:00
parent 85368001e6
commit d5a1d09406
3 changed files with 15 additions and 0 deletions

View File

@@ -46,5 +46,13 @@ namespace CoreCms.Net.Model.Entities
[Display(Name = "核销门店")]
[SugarColumn(IsIgnore = true)]
public List<string> consumableStores { get; set; }
/// <summary>
/// 销量
/// </summary>
[Display(Name = "销量")]
[SugarColumn(IsIgnore = true)]
public int buyCount { get; set; } = 0;
}
}