mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 17:43:26 +08:00
# 2022-02-09
### 1.3.5 开源社区版(会员专业版同步修改): 无 ### 0.1.5 会员专业版: 【升级】nuget升级常用组件到最新版本。 【修复】服务商品列表图片组件从image调整为u--image组件。#I4RUC6 【优化】规范coreshop-goods.vue组件for循环未定义key的问题。 【修复】修复因升级uview版本导致【商品选项卡goodTabBar组件】切换失效的问题。 【新增】微信自定义交易组件增加【商品审核结果回调】,【类目审核结果回调】微信服务器消息推送处理。 【优化】调整自定义交易组件sku价格为decimal(18, 2)类型,方便小数处理。 【优化】微信自定义交易组件增加图片同步至微信侧功能。 【优化】重命名一些方法名称大小写。 【新增】首页设计轮播图增加高度设置功能。#I4SWEA 【修复】优化在苹果6/7/8plus及安卓一些机型出现分享海报弹窗文字被遮挡的问题。#I4SWCA
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/7/31 15:51:02
|
||||
* CreateTime: 2022/2/7 1:09:51
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
@@ -25,152 +25,152 @@ namespace CoreCms.Net.Model.Entities
|
||||
public WeChatTransactionComponentGoodSKU()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 序列
|
||||
/// </summary>
|
||||
[Display(Name = "序列")]
|
||||
|
||||
|
||||
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
||||
|
||||
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
|
||||
public System.Int32 id { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public System.Int32 id { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 交易组件平台自定义skuID
|
||||
/// </summary>
|
||||
[Display(Name = "交易组件平台自定义skuID")]
|
||||
|
||||
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
|
||||
public System.Int64 skuId { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public System.Int64 skuId { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 商家自定义商品ID
|
||||
/// </summary>
|
||||
[Display(Name = "商家自定义商品ID")]
|
||||
|
||||
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
|
||||
|
||||
|
||||
public System.String outProductId { get; set; }
|
||||
|
||||
|
||||
[StringLength(maximumLength: 50, ErrorMessage = "{0}不能超过{1}字")]
|
||||
|
||||
|
||||
public System.String outProductId { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 商家自定义skuID
|
||||
/// </summary>
|
||||
[Display(Name = "商家自定义skuID")]
|
||||
|
||||
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
|
||||
|
||||
|
||||
public System.String outSkuId { get; set; }
|
||||
|
||||
|
||||
[StringLength(maximumLength: 50, ErrorMessage = "{0}不能超过{1}字")]
|
||||
|
||||
|
||||
public System.String outSkuId { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// sku小图
|
||||
/// </summary>
|
||||
[Display(Name = "sku小图")]
|
||||
|
||||
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
[StringLength(maximumLength:255,ErrorMessage = "{0}不能超过{1}字")]
|
||||
|
||||
|
||||
public System.String thumbImg { get; set; }
|
||||
|
||||
|
||||
[StringLength(maximumLength: 255, ErrorMessage = "{0}不能超过{1}字")]
|
||||
|
||||
|
||||
public System.String thumbImg { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 成本价格
|
||||
/// </summary>
|
||||
[Display(Name = "成本价格")]
|
||||
|
||||
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
|
||||
public System.Int32 costprice { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public System.Decimal costprice { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 售卖价格
|
||||
/// </summary>
|
||||
[Display(Name = "售卖价格")]
|
||||
|
||||
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
|
||||
public System.Int32 salePrice { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public System.Decimal salePrice { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 市场价格
|
||||
/// </summary>
|
||||
[Display(Name = "市场价格")]
|
||||
|
||||
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
|
||||
public System.Int32 marketPrice { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public System.Decimal marketPrice { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 库存
|
||||
/// </summary>
|
||||
[Display(Name = "库存")]
|
||||
|
||||
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
|
||||
public System.Int32 stockNum { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public System.Int32 stockNum { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 条形码
|
||||
/// </summary>
|
||||
[Display(Name = "条形码")]
|
||||
|
||||
|
||||
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
|
||||
|
||||
|
||||
public System.String barCode { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
[StringLength(maximumLength: 50, ErrorMessage = "{0}不能超过{1}字")]
|
||||
|
||||
|
||||
public System.String barCode { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 商品编码
|
||||
/// </summary>
|
||||
[Display(Name = "商品编码")]
|
||||
|
||||
|
||||
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
|
||||
|
||||
|
||||
public System.String skuCode { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
[StringLength(maximumLength: 50, ErrorMessage = "{0}不能超过{1}字")]
|
||||
|
||||
|
||||
public System.String skuCode { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 是否选择
|
||||
/// </summary>
|
||||
[Display(Name = "是否选择")]
|
||||
|
||||
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
|
||||
public System.Boolean isSelect { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public System.Boolean isSelect { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,7 @@ namespace CoreCms.Net.Model.ViewModels.DTO
|
||||
/// <summary>
|
||||
/// OrderToAftersales返回类
|
||||
/// </summary>
|
||||
public class OrderToAftersalesDto
|
||||
public class OrderToAfterSalesDto
|
||||
{
|
||||
public decimal refundMoney { get; set; } = 0;
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@ namespace CoreCms.Net.Model.ViewModels.QueryMuch
|
||||
/// <summary>
|
||||
/// 根据订单号查询已经售后的内容.算退货商品明细
|
||||
/// </summary>
|
||||
public class QMAftersalesItems
|
||||
public class QMAfterSalesItems
|
||||
{
|
||||
public int orderItemsId { get; set; }
|
||||
public int nums { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user