30 lines
682 B
30 lines
682 B
2 years ago
|
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; }
|
||
|
}
|
||
|
}
|