using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.NET.Core;
[SugarTable(null, "用户订单关联表")]
[SysTable]
public class SysWechatUserMapCarts : EntityBase
{
///
///付款用户的小程序OpenId(根据用户绑定小程序获取)
///
[SugarColumn(ColumnDescription = "OpenId", IsNullable = true)]
public string OpenId { get; set; }
///
/// 微信平台Id
///
[SugarColumn(ColumnDescription = "Unionid", IsNullable = true)]
public string Unionid { get; set; }
///
/// 用户手机号
///
[SugarColumn(ColumnDescription = "用户手机号")]
public string Phone { get; set; }
///
///
///
[SugarColumn(ColumnDescription = "用户订单")]
public string OrderId { get; set; }
///
/// 关联专家介绍页面唯一Id
///
[SugarColumn(ColumnDescription = "关联专家介绍页面唯一Id")]
public string cartId { get; set; }//关联专家介绍id
///
/// 项目名称
///
[SugarColumn(ColumnDescription = "cartName", IsNullable = true)]
public string cartName { get; set; }
///
/// 专家用户的Openid
///
[SugarColumn(ColumnDescription = "ZjOpenId", IsNullable = true)]
public string ZjOpenId { get; set; }
///
/// 支付金额
///
[SugarColumn(ColumnDescription = "支付金额")]
public string Amount { get; set; }
}