using System; using System.Collections.Generic; using SqlSugar; using OfficeOpenXml.Attributes; using Newtonsoft.Json; namespace ARW.Model.Models.Business.Custom.HistorySearchs { /// /// 历史搜索,数据实体对象 /// /// @author lwh /// @date 2023-10-09 /// [SugarTable("tb_history_search")] public class HistorySearch : BusinessBase { /// /// 描述 : /// 空值 : false /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "history_search_id")] public int HistorySearchId { get; set; } /// /// 描述 : /// 空值 : false /// [JsonConverter(typeof(ValueToStringConverter))] [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "history_search_guid")] public long HistorySearchGuid { get; set; } /// /// 描述 :客户guid /// 空值 : false /// [JsonConverter(typeof(ValueToStringConverter))] [SugarColumn(ColumnName = "customer_guid")] public long CustomerGuid { get; set; } /// /// 描述 :搜索内容 /// 空值 : false /// [SugarColumn(ColumnName = "history_search_content")] public string HistorySearchContent { get; set; } } }