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.
36 lines
847 B
36 lines
847 B
2 years ago
|
using System;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
using Znyc.Recruitment.Admin.Commons.Entitys;
|
||
|
|
||
|
namespace Znyc.Recruitment.Admin.Security.Entitys
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 微信用户信息表
|
||
|
/// </summary>
|
||
|
[Table("znyc.sys_wxuserrelation")]
|
||
|
[Serializable]
|
||
|
public class WxUserRelationEntity : BaseEntity
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// OpenId
|
||
|
/// </summary>
|
||
|
public string OpenId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 开放平台Id
|
||
|
/// </summary>
|
||
|
public string UnionId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 公众号openid
|
||
|
/// </summary>
|
||
|
public string WxOfficialOpenId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 平台类型
|
||
|
/// </summary>
|
||
|
public int PlatformType { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|