You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
803 B
31 lines
803 B
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Znyc.Recruitment.Admin.Commons.Entitys;
|
|
|
|
namespace Znyc.Recruitment.Admin.Security.Entitys
|
|
{
|
|
/// <summary>
|
|
/// 第三方登录与用户绑定表,数据实体对象
|
|
/// </summary>
|
|
[Table("sys_useropenids")]
|
|
public class UserOpenIdsEntity : BaseEntity<long>
|
|
{
|
|
#region Property Members
|
|
|
|
/// <summary>
|
|
/// 用户编号
|
|
/// </summary>
|
|
public virtual long UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 第三方类型
|
|
/// </summary>
|
|
public virtual string OpenIdType { get; set; }
|
|
|
|
/// <summary>
|
|
/// OpenId
|
|
/// </summary>
|
|
public virtual string OpenId { get; set; }
|
|
|
|
#endregion Property Members
|
|
}
|
|
}
|