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.
 
 
 

35 lines
699 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Znyc.Admin.Security.Dtos.WxUserRelation
{
public class WxUserRelationOutputDto
{
/// <summary>
/// UnionId
/// </summary>
public string UnionId { get; set; }
/// <summary>
/// OpenId
/// </summary>
public string OpenId { get; set; }
/// <summary>
/// 用户Id
/// </summary>
public long UserId { get; set; }
/// <summary>
/// 公众号OpenId
/// </summary>
public string WxOfficialOpenId { get; set; }
}
}