24 lines
552 B
24 lines
552 B
2 years ago
|
using AutoMapper;
|
||
|
using System;
|
||
|
using Znyc.Recruitment.Admin.Security.Entitys;
|
||
|
|
||
|
namespace Znyc.Recruitment.Admin.Security.Dtos
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 输入对象模型
|
||
|
/// </summary>
|
||
|
[AutoMap(typeof(UserOpenIdsEntity))]
|
||
|
[Serializable]
|
||
|
public class UserOpenIdsInputDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 设置或获取
|
||
|
/// </summary>
|
||
|
public string OpenIdType { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 设置或获取
|
||
|
/// </summary>
|
||
|
public string OpenId { get; set; }
|
||
|
}
|
||
|
}
|