65 lines
1.6 KiB
C#
65 lines
1.6 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
///付款用户的小程序OpenId(根据用户绑定小程序获取)
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "OpenId", IsNullable = true)]
|
|
public string OpenId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 微信平台Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "Unionid", IsNullable = true)]
|
|
public string Unionid { get; set; }
|
|
/// <summary>
|
|
/// 用户手机号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "用户手机号")]
|
|
public string Phone { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "用户订单")]
|
|
public string OrderId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 关联专家介绍页面唯一Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "关联专家介绍页面唯一Id")]
|
|
public string cartId { get; set; }//关联专家介绍id
|
|
|
|
/// <summary>
|
|
/// 项目名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "cartName", IsNullable = true)]
|
|
public string cartName { get; set; }
|
|
/// <summary>
|
|
/// 专家用户的Openid
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "ZjOpenId", IsNullable = true)]
|
|
public string ZjOpenId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 支付金额
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "支付金额")]
|
|
public string Amount { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|