using Newtonsoft.Json; using OfficeOpenXml.Attributes; using SqlSugar; using System; namespace ARW.Model.Vo.Business.ToolCustomers { /// /// Tool客户展示对象 /// public class ToolCustomerVo { [EpplusIgnore] public int ToolCustomerId { get; set; } [JsonConverter(typeof(ValueToStringConverter))] [EpplusIgnore] public long ToolCustomerGuid { get; set; } [EpplusTableColumn(Header = "用户名")] public string ToolCustomerName { get; set; } [EpplusIgnore] public string ToolCustomerPhoneNumber { get; set; } [EpplusIgnore] public string ToolCustomerEmail { get; set; } } }