using System;
using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Recruitment.Admin.Commons.Entitys;
namespace Znyc.Recruitment.Admin.Security.Entitys
{
///
/// 微信用户信息表
///
[Table("znyc.sys_wxuserrelation")]
[Serializable]
public class WxUserRelationEntity : BaseEntity
{
///
/// OpenId
///
public string OpenId { get; set; }
///
/// 开放平台Id
///
public string UnionId { get; set; }
///
/// 公众号openid
///
public string WxOfficialOpenId { get; set; }
///
/// 平台类型
///
public int PlatformType { get; set; }
}
}