mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 17:43:26 +08:00
【新增】新增微信扫码支付功能,对接PC端。
【新增】增加DTO类库,将逐步完善dto层。 【修复】修复【分类】切换后,切换回来未清零原始数据,导致更新数据重复的问题。 【调整】移除模板库功能,防止出现审核因为模板库页面存在而导致的审核失败。暂将模板库的代码存放到会员QQ群内,方便下载使用。 【调整】代码生成器【Repository.tpl】移除Cache手动增删改,【SqlSugarSetup】增加sqlsugar自动检测增删改后清理二级缓存。 【调整】后端新增秒杀独立组件,用于区分团购及秒杀的差异,首页新增秒杀组件。 【优化】重写首页所有组件样式及接口数据获取效率。 【优化】优化拼团,秒杀,团购,接龙数据获取逻辑,提升列表及详情页面数据获取效率。 【优化】调整拼团,秒杀,团购,服务商品推广海报为新式海报效果。增加服务商品推广海报。 【优化】清理h5相关代码判断,移除h5支付组件,提高响应速度。 【优化】移除小程序前端冗余代码。加快代码执行效率。
This commit is contained in:
@@ -37,7 +37,7 @@ namespace CoreCms.Net.Model.Entities
|
||||
/// </summary>
|
||||
[Display(Name = "促销ID")]
|
||||
[SugarColumn(ColumnDescription = "促销ID", IsNullable = true)]
|
||||
public System.Int32? promotionId { get; set; }
|
||||
public System.Int32 promotionId { get; set; }
|
||||
/// <summary>
|
||||
/// 促销条件编码
|
||||
/// </summary>
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace CoreCms.Net.Model.Entities
|
||||
/// </summary>
|
||||
[Display(Name = "促销ID")]
|
||||
[SugarColumn(ColumnDescription = "促销ID", IsNullable = true)]
|
||||
public System.Int32? promotionId { get; set; }
|
||||
public System.Int32 promotionId { get; set; }
|
||||
/// <summary>
|
||||
/// 促销条件编码
|
||||
/// </summary>
|
||||
|
||||
@@ -26,6 +26,13 @@ namespace CoreCms.Net.Model.Entities
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public int timestamp { get; set; } = 0;
|
||||
|
||||
/// <summary>
|
||||
/// 开启状态
|
||||
/// </summary>
|
||||
[Display(Name = "开启状态")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public int openStatus { get; set; } = 0;
|
||||
|
||||
/// <summary>
|
||||
/// 允许购买用户等级
|
||||
/// </summary>
|
||||
|
||||
@@ -38,17 +38,16 @@ namespace CoreCms.Net.Model.FromBody
|
||||
public int status { get; set; } = 0;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取团购秒杀商品详情
|
||||
/// </summary>
|
||||
|
||||
public class FMGetGoodsDetial
|
||||
{
|
||||
public int id { get; set; }
|
||||
public int groupId { get; set; }
|
||||
|
||||
public int type { get; set; }
|
||||
|
||||
public bool needSku { get; set; } = false;
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -54,7 +54,7 @@ namespace CoreCms.Net.Model.ViewModels.DTO
|
||||
public int areaId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 购物车货品数据
|
||||
/// 购物车序列
|
||||
/// </summary>
|
||||
public string cartIds { get; set; }
|
||||
|
||||
@@ -109,7 +109,7 @@ namespace CoreCms.Net.Model.ViewModels.DTO
|
||||
public int storeId { get; set; } = 0;
|
||||
|
||||
/// <summary>
|
||||
/// 订单类型,1是普通订单,2是拼团订单
|
||||
/// 订单类型[对应CoreCmsOrder表orderType字段]/也对应购物车cart订单类型
|
||||
/// </summary>
|
||||
public int orderType { get; set; } = 1;
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@ namespace CoreCms.Net.Model.ViewModels.DTO
|
||||
public decimal orderMoney { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 购物车货品序列号
|
||||
/// 购物车序列号
|
||||
/// </summary>
|
||||
public string ids { get; set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user