micro_mall_api/ARW.Model/Models/Business/Advertisement/SearchRecommends/SearchRecommend.cs
2023-10-25 17:29:30 +08:00

57 lines
1.4 KiB
C#

using System;
using System.Collections.Generic;
using SqlSugar;
using OfficeOpenXml.Attributes;
using Newtonsoft.Json;
namespace ARW.Model.Models.Business.Advertisement.SearchRecommends
{
/// <summary>
/// 搜索推荐,数据实体对象
///
/// @author lwh
/// @date 2023-10-25
/// </summary>
[SugarTable("tb_search_recommend")]
public class SearchRecommend : BusinessBase
{
/// <summary>
/// 描述 :
/// 空值 : false
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "search_recommend_id")]
public int SearchRecommendId { get; set; }
/// <summary>
/// 描述 :
/// 空值 : false
/// </summary>
[JsonConverter(typeof(ValueToStringConverter))]
[SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "search_recommend_guid")]
public long SearchRecommendGuid { get; set; }
/// <summary>
/// 描述 :搜索推荐标题
/// 空值 : false
/// </summary>
[SugarColumn(ColumnName = "search_recommend_title")]
public string SearchRecommendTitle { get; set; }
/// <summary>
/// 描述 :排序
/// 空值 : false
/// </summary>
[SugarColumn(ColumnName = "search_recommend_sort")]
public int SearchRecommendSort { get; set; }
}
}