emoticon_api/ARW.Model/Vo/Business/ShopManager/Shops/UserWithOutBindVo.cs
2023-06-24 23:21:02 +08:00

30 lines
607 B
C#

using Newtonsoft.Json;
using OfficeOpenXml.Attributes;
using SqlSugar;
using System;
namespace ARW.Model.Vo.Business.ShopManager.Shops
{
/// <summary>
/// 未绑定用户展示对象
///
/// @author lwh
/// @date 2023-06-12
/// </summary>
public class UserWithOutBindVo
{
/// <summary>
/// 描述 : 用户guid
/// </summary>
[JsonConverter(typeof(ValueToStringConverter))]
public long UserId { get; set; }
/// <summary>
/// 描述 :用户名称
/// </summary>
public string UserName { get; set; }
}
}