【优化】移除旧版自定义交易组件。

This commit is contained in:
jianweie code
2023-09-02 01:49:22 +08:00
parent 651dc6b231
commit 0a07f3e005
108 changed files with 181 additions and 14817 deletions

View File

@@ -227,12 +227,5 @@ namespace CoreCms.Net.Model.Entities
[SugarColumn(IsIgnore = true)]
public string userNickName { get; set; }
/// <summary>
/// 交易组件订单
/// </summary>
[SugarColumn(IsIgnore = true)]
public WeChatTransactionComponentOrder tcOrder { get; set; }
}
}

View File

@@ -1,200 +0,0 @@
/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2021/7/14 23:14:23
* Description: 暂无
***********************************************************************/
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace CoreCms.Net.Model.Entities
{
/// <summary>
/// 自定义交易组件上传类目资质
/// </summary>
public partial class WeChatTransactionComponentAuditCategory
{
/// <summary>
/// 构造函数
/// </summary>
public WeChatTransactionComponentAuditCategory()
{
}
/// <summary>
/// 序列
/// </summary>
[Display(Name = "序列")]
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 id { get; set; }
/// <summary>
/// 营业执照或组织机构代码证
/// </summary>
[Display(Name = "营业执照或组织机构代码证")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength:255,ErrorMessage = "{0}不能超过{1}字")]
public System.String licenseImage { get; set; }
/// <summary>
/// 一级类目
/// </summary>
[Display(Name = "一级类目")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 level1 { get; set; }
/// <summary>
/// 一级类目名称
/// </summary>
[Display(Name = "一级类目名称")]
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String level1Name { get; set; }
/// <summary>
/// 二级类目
/// </summary>
[Display(Name = "二级类目")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 level2 { get; set; }
/// <summary>
/// 二级类目名称
/// </summary>
[Display(Name = "二级类目名称")]
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String level2Name { get; set; }
/// <summary>
/// 三级类目
/// </summary>
[Display(Name = "三级类目")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 level3 { get; set; }
/// <summary>
/// 三级类目名称
/// </summary>
[Display(Name = "三级类目名称")]
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String level3Name { get; set; }
/// <summary>
/// 资质材料
/// </summary>
[Display(Name = "资质材料")]
[Required(ErrorMessage = "请输入{0}")]
public System.String certificateImage { get; set; }
/// <summary>
/// 审核单
/// </summary>
[Display(Name = "审核单")]
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String auditId { get; set; }
/// <summary>
/// 审核状态
/// </summary>
[Display(Name = "审核状态")]
public System.Int32? status { get; set; }
/// <summary>
/// 品牌id
/// </summary>
[Display(Name = "品牌id")]
public System.Int32? brandId { get; set; }
/// <summary>
/// 拒绝原因
/// </summary>
[Display(Name = "拒绝原因")]
[StringLength(maximumLength:255,ErrorMessage = "{0}不能超过{1}字")]
public System.String rejectReason { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Display(Name = "创建时间")]
[Required(ErrorMessage = "请输入{0}")]
public System.DateTime createTime { get; set; }
}
}

View File

@@ -1,104 +0,0 @@
/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2021/8/1 22:54:37
* Description: 暂无
***********************************************************************/
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace CoreCms.Net.Model.Entities
{
/// <summary>
/// 自定义交易组件类目审核回调
/// </summary>
public partial class WeChatTransactionComponentAuditCategoryAuditLog
{
/// <summary>
/// 构造函数
/// </summary>
public WeChatTransactionComponentAuditCategoryAuditLog()
{
}
/// <summary>
/// 序列
/// </summary>
[Display(Name = "序列")]
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 id { get; set; }
/// <summary>
/// 审核id
/// </summary>
[Display(Name = "审核id")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String auditId { get; set; }
/// <summary>
/// 审核状态,1:已通过,9:拒绝
/// </summary>
[Display(Name = "审核状态,1:已通过,9:拒绝")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 status { get; set; }
/// <summary>
/// 审核类型本接口固定为2
/// </summary>
[Display(Name = "审核类型本接口固定为2")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 auditType { get; set; }
/// <summary>
/// 相关信息
/// </summary>
[Display(Name = "相关信息")]
[StringLength(maximumLength:250,ErrorMessage = "{0}不能超过{1}字")]
public System.String rejectReason { get; set; }
/// <summary>
/// 数据创建时间
/// </summary>
[Display(Name = "数据创建时间")]
[Required(ErrorMessage = "请输入{0}")]
public System.DateTime createTime { get; set; }
}
}

View File

@@ -1,308 +0,0 @@
/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2022/3/21 3:39:55
* Description: 暂无
***********************************************************************/
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace CoreCms.Net.Model.Entities
{
/// <summary>
/// 自定义交易组件上传品牌信息
/// </summary>
public partial class WeChatTransactionComponentBrandAudit
{
/// <summary>
/// 构造函数
/// </summary>
public WeChatTransactionComponentBrandAudit()
{
}
/// <summary>
/// 序列
/// </summary>
[Display(Name = "序列")]
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 id { get; set; }
/// <summary>
/// 营业执照或组织机构代码证
/// </summary>
[Display(Name = "营业执照或组织机构代码证")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength:500,ErrorMessage = "{0}不能超过{1}字")]
public System.String license { get; set; }
/// <summary>
/// 认证审核类型
/// </summary>
[Display(Name = "认证审核类型")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 brand_audit_type { get; set; }
/// <summary>
/// 商标分类
/// </summary>
[Display(Name = "商标分类")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength:10,ErrorMessage = "{0}不能超过{1}字")]
public System.String trademark_type { get; set; }
/// <summary>
/// 经营类型
/// </summary>
[Display(Name = "经营类型")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 brand_management_type { get; set; }
/// <summary>
/// 商品产地是否进口
/// </summary>
[Display(Name = "商品产地是否进口")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 commodity_origin_type { get; set; }
/// <summary>
/// 商标/品牌词
/// </summary>
[Display(Name = "商标/品牌词")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String brand_wording { get; set; }
/// <summary>
/// 销售授权书
/// </summary>
[Display(Name = "销售授权书")]
[StringLength(maximumLength:500,ErrorMessage = "{0}不能超过{1}字")]
public System.String sale_authorization { get; set; }
/// <summary>
/// 商标注册证书
/// </summary>
[Display(Name = "商标注册证书")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength:500,ErrorMessage = "{0}不能超过{1}字")]
public System.String trademark_registration_certificate { get; set; }
/// <summary>
/// 商标变更证明
/// </summary>
[Display(Name = "商标变更证明")]
[StringLength(maximumLength:500,ErrorMessage = "{0}不能超过{1}字")]
public System.String trademark_change_certificate { get; set; }
/// <summary>
/// 商标注册人姓名
/// </summary>
[Display(Name = "商标注册人姓名")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength:100,ErrorMessage = "{0}不能超过{1}字")]
public System.String trademark_registrant { get; set; }
/// <summary>
/// 商标注册号/申请号
/// </summary>
[Display(Name = "商标注册号/申请号")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength:10,ErrorMessage = "{0}不能超过{1}字")]
public System.String trademark_registrant_nu { get; set; }
/// <summary>
/// 商标有效期
/// </summary>
[Display(Name = "商标有效期")]
[Required(ErrorMessage = "请输入{0}")]
public System.DateTime trademark_authorization_period { get; set; }
/// <summary>
/// 商标注册申请受理通知书
/// </summary>
[Display(Name = "商标注册申请受理通知书")]
[StringLength(maximumLength:100,ErrorMessage = "{0}不能超过{1}字")]
public System.String trademark_registration_application { get; set; }
/// <summary>
/// 商标申请人姓名
/// </summary>
[Display(Name = "商标申请人姓名")]
[StringLength(maximumLength:100,ErrorMessage = "{0}不能超过{1}字")]
public System.String trademark_applicant { get; set; }
/// <summary>
/// 商标申请时间
/// </summary>
[Display(Name = "商标申请时间")]
[Required(ErrorMessage = "请输入{0}")]
public System.DateTime trademark_application_time { get; set; }
/// <summary>
/// 中华人民共和国海关进口货物报关单
/// </summary>
[Display(Name = "中华人民共和国海关进口货物报关单")]
[StringLength(maximumLength:500,ErrorMessage = "{0}不能超过{1}字")]
public System.String imported_goods_form { get; set; }
/// <summary>
/// 商品使用场景
/// </summary>
[Display(Name = "商品使用场景")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 scene_group_list { get; set; }
/// <summary>
/// 审核单id
/// </summary>
[Display(Name = "审核单id")]
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String audit_id { get; set; }
/// <summary>
/// 审核状态
/// </summary>
[Display(Name = "审核状态")]
public System.Int32? status { get; set; }
/// <summary>
/// 品牌id
/// </summary>
[Display(Name = "品牌id")]
public System.Int32? brandId { get; set; }
/// <summary>
/// 拒绝原因
/// </summary>
[Display(Name = "拒绝原因")]
[StringLength(maximumLength:255,ErrorMessage = "{0}不能超过{1}字")]
public System.String rejectReason { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Display(Name = "创建时间")]
[Required(ErrorMessage = "请输入{0}")]
public System.DateTime createTime { get; set; }
}
}

View File

@@ -1,116 +0,0 @@
/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2022/3/21 3:30:18
* Description: 暂无
***********************************************************************/
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace CoreCms.Net.Model.Entities
{
/// <summary>
/// 自定义交易组件上传品牌信息审核结果日志
/// </summary>
public partial class WeChatTransactionComponentBrandAuditLog
{
/// <summary>
/// 构造函数
/// </summary>
public WeChatTransactionComponentBrandAuditLog()
{
}
/// <summary>
/// 序列
/// </summary>
[Display(Name = "序列")]
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 id { get; set; }
/// <summary>
/// 审核Id
/// </summary>
[Display(Name = "审核Id")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String audit_id { get; set; }
/// <summary>
/// 审核状态,1:已通过,9:拒绝
/// </summary>
[Display(Name = "审核状态,1:已通过,9:拒绝")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 status { get; set; }
/// <summary>
/// 审核类型本接口固定为1
/// </summary>
[Display(Name = "审核类型本接口固定为1")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 audit_type { get; set; }
/// <summary>
/// 相关信息
/// </summary>
[Display(Name = "相关信息")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength:500,ErrorMessage = "{0}不能超过{1}字")]
public System.String reject_reason { get; set; }
/// <summary>
/// 品牌id
/// </summary>
[Display(Name = "品牌id")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 brand_id { get; set; }
/// <summary>
/// 回调时间
/// </summary>
[Display(Name = "回调时间")]
[Required(ErrorMessage = "请输入{0}")]
public System.DateTime createTime { get; set; }
}
}

View File

@@ -1,54 +0,0 @@
/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2021/7/11 23:48:58
* Description: 暂无
***********************************************************************/
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace CoreCms.Net.Model.Entities
{
/// <summary>
/// 自定义交易组件快递公司
/// </summary>
public partial class WeChatTransactionComponentDeliveryCompany
{
/// <summary>
/// 构造函数
/// </summary>
public WeChatTransactionComponentDeliveryCompany()
{
}
/// <summary>
/// 快递公司id
/// </summary>
[Display(Name = "快递公司id")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String deliveryId { get; set; }
/// <summary>
/// 快递公司名称
/// </summary>
[Display(Name = "快递公司名称")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String deliveryName { get; set; }
}
}

View File

@@ -1,181 +0,0 @@
/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2021/7/5 13:04:13
* Description: 暂无
***********************************************************************/
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace CoreCms.Net.Model.Entities
{
/// <summary>
/// 自定义交易组件商品列表
/// </summary>
public partial class WeChatTransactionComponentGood
{
/// <summary>
/// 构造函数
/// </summary>
public WeChatTransactionComponentGood()
{
}
/// <summary>
/// 序列
/// </summary>
[Display(Name = "序列")]
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 id { get; set; }
/// <summary>
/// 交易组件平台内部商品ID
/// </summary>
[Display(Name = "交易组件平台内部商品ID")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int64 productId { get; set; }
/// <summary>
/// 交易组件创建时间
/// </summary>
[Display(Name = "交易组件创建时间")]
public System.DateTime? createTime { get; set; }
/// <summary>
/// 商品序列
/// </summary>
[Display(Name = "商品序列")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength: 50, ErrorMessage = "{0}不能超过{1}字")]
public System.String outProductId { get; set; }
/// <summary>
/// 商品标题
/// </summary>
[Display(Name = "商品标题")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength: 255, ErrorMessage = "{0}不能超过{1}字")]
public System.String title { get; set; }
/// <summary>
/// 小程序路径
/// </summary>
[Display(Name = "小程序路径")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength: 255, ErrorMessage = "{0}不能超过{1}字")]
public System.String path { get; set; }
/// <summary>
/// 主图列表
/// </summary>
[Display(Name = "主图列表")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength: 500, ErrorMessage = "{0}不能超过{1}字")]
public System.String headImg { get; set; }
/// <summary>
/// 商品资质图片列表
/// </summary>
[Display(Name = "商品资质图片列表")]
[StringLength(maximumLength: 500, ErrorMessage = "{0}不能超过{1}字")]
public System.String qualificationPics { get; set; }
/// <summary>
/// 商品详情图文
/// </summary>
[Display(Name = "商品详情图文")]
public System.String descInfoDesc { get; set; }
/// <summary>
/// 商品详情图片列表
/// </summary>
[Display(Name = "商品详情图片列表")]
[StringLength(maximumLength: 500, ErrorMessage = "{0}不能超过{1}字")]
public System.String descInfoImgs { get; set; }
/// <summary>
/// 三级类目ID
/// </summary>
[Display(Name = "三级类目ID")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 thirdCatId { get; set; }
/// <summary>
/// 三级类目名称
/// </summary>
[Display(Name = "三级类目名称")]
[StringLength(maximumLength: 50, ErrorMessage = "{0}不能超过{1}字")]
public System.String thirdCatName { get; set; }
/// <summary>
/// 品牌id
/// </summary>
[Display(Name = "品牌id")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 brandId { get; set; }
/// <summary>
/// 预留字段
/// </summary>
[Display(Name = "预留字段")]
[StringLength(maximumLength: 50, ErrorMessage = "{0}不能超过{1}字")]
public System.String infoVersion { get; set; }
/// <summary>
/// 最后提交时间
/// </summary>
[Display(Name = "最后提交时间")]
public System.DateTime? lastPostTime { get; set; }
/// <summary>
/// 最后更新时间
/// </summary>
[Display(Name = "最后更新时间")]
public System.DateTime? updateTime { get; set; }
}
}

View File

@@ -1,104 +0,0 @@
/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2021/8/1 22:22:12
* Description: 暂无
***********************************************************************/
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace CoreCms.Net.Model.Entities
{
/// <summary>
/// 自定义交易组件商品审核回调
/// </summary>
public partial class WeChatTransactionComponentGoodAuditLog
{
/// <summary>
/// 构造函数
/// </summary>
public WeChatTransactionComponentGoodAuditLog()
{
}
/// <summary>
/// 序列
/// </summary>
[Display(Name = "序列")]
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 id { get; set; }
/// <summary>
/// 商家自定义商品id
/// </summary>
[Display(Name = "商家自定义商品id")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String outProductId { get; set; }
/// <summary>
/// 平台商品id
/// </summary>
[Display(Name = "平台商品id")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int64 productId { get; set; }
/// <summary>
/// 审核状态,4:已通过,3:拒绝
/// </summary>
[Display(Name = "审核状态,4:已通过,3:拒绝")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 status { get; set; }
/// <summary>
/// 相关信息
/// </summary>
[Display(Name = "相关信息")]
[StringLength(maximumLength:250,ErrorMessage = "{0}不能超过{1}字")]
public System.String rejectReason { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Display(Name = "创建时间")]
[Required(ErrorMessage = "请输入{0}")]
public System.DateTime createTime { get; set; }
}
}

View File

@@ -1,32 +0,0 @@
/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2021/7/5 13:04:13
* Description: 暂无
***********************************************************************/
using System.Collections.Generic;
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace CoreCms.Net.Model.Entities
{
/// <summary>
/// 自定义交易组件商品列表
/// </summary>
public partial class WeChatTransactionComponentGood
{
/// <summary>
/// sku列表
/// </summary>
[Display(Name = "SKU")]
[SqlSugar.SugarColumn(IsIgnore = true)]
public List<WeChatTransactionComponentGoodSKU> sku { get; set; }
}
}

View File

@@ -1,176 +0,0 @@
/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2022/2/7 1:09:51
* Description: 暂无
***********************************************************************/
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace CoreCms.Net.Model.Entities
{
/// <summary>
/// 自定义交易组件商品关联sku列表
/// </summary>
public partial class WeChatTransactionComponentGoodSKU
{
/// <summary>
/// 构造函数
/// </summary>
public WeChatTransactionComponentGoodSKU()
{
}
/// <summary>
/// 序列
/// </summary>
[Display(Name = "序列")]
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 id { get; set; }
/// <summary>
/// 交易组件平台自定义skuID
/// </summary>
[Display(Name = "交易组件平台自定义skuID")]
[Required(ErrorMessage = "请输入{0}")]
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; }
/// <summary>
/// 商家自定义skuID
/// </summary>
[Display(Name = "商家自定义skuID")]
[Required(ErrorMessage = "请输入{0}")]
[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; }
/// <summary>
/// 成本价格
/// </summary>
[Display(Name = "成本价格")]
[Required(ErrorMessage = "请输入{0}")]
public System.Decimal costprice { get; set; }
/// <summary>
/// 售卖价格
/// </summary>
[Display(Name = "售卖价格")]
[Required(ErrorMessage = "请输入{0}")]
public System.Decimal salePrice { get; set; }
/// <summary>
/// 市场价格
/// </summary>
[Display(Name = "市场价格")]
[Required(ErrorMessage = "请输入{0}")]
public System.Decimal marketPrice { get; set; }
/// <summary>
/// 库存
/// </summary>
[Display(Name = "库存")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 stockNum { get; set; }
/// <summary>
/// 条形码
/// </summary>
[Display(Name = "条形码")]
[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; }
/// <summary>
/// 是否选择
/// </summary>
[Display(Name = "是否选择")]
[Required(ErrorMessage = "请输入{0}")]
public System.Boolean isSelect { get; set; }
}
}

View File

@@ -1,104 +0,0 @@
/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2022/6/30 12:28:17
* Description: 暂无
***********************************************************************/
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace CoreCms.Net.Model.Entities
{
/// <summary>
/// 自定义交易组件提交订单
/// </summary>
public partial class WeChatTransactionComponentOrder
{
/// <summary>
/// 构造函数
/// </summary>
public WeChatTransactionComponentOrder()
{
}
/// <summary>
/// 序列
/// </summary>
[Display(Name = "序列")]
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 id { get; set; }
/// <summary>
/// 交易组件订单ID
/// </summary>
[Display(Name = "交易组件订单ID")]
public System.Int64? orderId { get; set; }
/// <summary>
/// 商家自定义订单ID
/// </summary>
[Display(Name = "商家自定义订单ID")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength:20,ErrorMessage = "{0}不能超过{1}字")]
public System.String outOrderId { get; set; }
/// <summary>
/// 用户openId
/// </summary>
[Display(Name = "用户openId")]
[StringLength(maximumLength:32,ErrorMessage = "{0}不能超过{1}字")]
public System.String openid { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Display(Name = "创建时间")]
[Required(ErrorMessage = "请输入{0}")]
public System.DateTime createTime { get; set; }
/// <summary>
/// 支付单序列
/// </summary>
[Display(Name = "支付单序列")]
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String paymentId { get; set; }
}
}

View File

@@ -1,176 +0,0 @@
/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2021/7/3 16:30:55
* Description: 暂无
***********************************************************************/
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace CoreCms.Net.Model.Entities
{
/// <summary>
/// 自定义交易组件三级类目
/// </summary>
public partial class WeChatTransactionComponentThirdCategory
{
/// <summary>
/// 构造函数
/// </summary>
public WeChatTransactionComponentThirdCategory()
{
}
/// <summary>
/// 序列
/// </summary>
[Display(Name = "序列")]
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 id { get; set; }
/// <summary>
/// 类目ID
/// </summary>
[Display(Name = "类目ID")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 third_cat_id { get; set; }
/// <summary>
/// 类目名称
/// </summary>
[Display(Name = "类目名称")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String third_cat_name { get; set; }
/// <summary>
/// 类目资质
/// </summary>
[Display(Name = "类目资质")]
[StringLength(maximumLength:500,ErrorMessage = "{0}不能超过{1}字")]
public System.String qualification { get; set; }
/// <summary>
/// 类目资质类型,0:不需要,1:必填,2:选填
/// </summary>
[Display(Name = "类目资质类型,0:不需要,1:必填,2:选填")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 qualification_type { get; set; }
/// <summary>
/// 商品资质
/// </summary>
[Display(Name = "商品资质")]
[StringLength(maximumLength:500,ErrorMessage = "{0}不能超过{1}字")]
public System.String product_qualification { get; set; }
/// <summary>
/// 商品资质类型,0:不需要,1:必填,2:选填
/// </summary>
[Display(Name = "商品资质类型,0:不需要,1:必填,2:选填")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 product_qualification_type { get; set; }
/// <summary>
/// 二级类目ID
/// </summary>
[Display(Name = "二级类目ID")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 second_cat_id { get; set; }
/// <summary>
/// 二级类目名称
/// </summary>
[Display(Name = "二级类目名称")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String second_cat_name { get; set; }
/// <summary>
/// 一级类目ID
/// </summary>
[Display(Name = "一级类目ID")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 first_cat_id { get; set; }
/// <summary>
/// 一级类目名称
/// </summary>
[Display(Name = "一级类目名称")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String first_cat_name { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Display(Name = "创建时间")]
[Required(ErrorMessage = "请输入{0}")]
public System.DateTime createTime { get; set; }
}
}

View File

@@ -70,7 +70,7 @@ namespace CoreCms.Net.Model.FromBody
/// </summary>
public string logiNo { get; set; }
/// <summary>
/// 直播物流编码
/// 第三方对接物流编码
/// </summary>
public string deliveryCompanyId { get; set; }
public Dictionary<int, int> items { get; set; }