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