35 lines
942 B
C#
35 lines
942 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YBDevice.Entity.DataModel.ThirdOpen
|
|
{
|
|
/// <summary>
|
|
/// 客户绑定信息
|
|
/// </summary>
|
|
[SugarTable("T_UserWX", TableDescription = "客户绑定信息", IsDisabledUpdateAll = false, IsDisabledDelete = true)]
|
|
public class T_UserWX
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public Guid Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "用户ID")]
|
|
public Guid UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 小程序/字节openid
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "小程序/字节openid", ColumnDataType = "varchar(50)")]
|
|
public string OpenId { get; set; }
|
|
}
|
|
}
|