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.
30 lines
682 B
30 lines
682 B
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Znyc.Cloudcar.Admin.Security.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 输出对象模型
|
|
/// </summary>
|
|
[Serializable]
|
|
public class UserOpenIdsOutputDto
|
|
{
|
|
/// <summary>
|
|
/// 设置或获取
|
|
/// </summary>
|
|
[MaxLength(50)]
|
|
public long UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设置或获取
|
|
/// </summary>
|
|
[MaxLength(256)]
|
|
public string OpenIdType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设置或获取
|
|
/// </summary>
|
|
[MaxLength(128)]
|
|
public string OpenId { get; set; }
|
|
}
|
|
}
|