mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 17:43:26 +08:00
# 2022-03-21
### 1.4.1 开源社区版: 无 ### 0.3.0 专业版: 【新增】微信自定义交易组件增加【免审更新】功能。 【新增】微信自定义交易组件增加【上传品牌信息】功能。 【新增】微信自定义交易组件增加【品牌信息】审核回调验证功能。
This commit is contained in:
@@ -0,0 +1,308 @@
|
||||
/***********************************************************************
|
||||
* 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; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,116 @@
|
||||
/***********************************************************************
|
||||
* 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; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -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.Decimal costprice { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public System.Decimal costprice { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 售卖价格
|
||||
/// </summary>
|
||||
[Display(Name = "售卖价格")]
|
||||
|
||||
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
|
||||
public System.Decimal salePrice { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public System.Decimal salePrice { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 市场价格
|
||||
/// </summary>
|
||||
[Display(Name = "市场价格")]
|
||||
|
||||
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
|
||||
public System.Decimal 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; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user