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