key1_beacon_api/ARW.Model/Models/Business/TableDataManage/CustomerFollows/CustomerFollow.cs
2023-11-24 22:54:32 +08:00

59 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
using SqlSugar;
using OfficeOpenXml.Attributes;
using Newtonsoft.Json;
namespace ARW.Model.Models.Business.TableDataManage.CustomerFollows
{
/// <summary>
/// 客户关注,数据实体对象
///
/// @author lwh
/// @date 2023-11-24
/// </summary>
[SugarTable("tb_customer_follow")]
public class CustomerFollow : BusinessBase
{
/// <summary>
/// 描述 :
/// 空值 : false
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "customer_follow_id")]
public int CustomerFollowId { get; set; }
/// <summary>
/// 描述 :
/// 空值 : false
/// </summary>
[JsonConverter(typeof(ValueToStringConverter))]
[SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "customer_follow_guid")]
public long CustomerFollowGuid { get; set; }
/// <summary>
/// 描述 :客户Guid
/// 空值 : false
/// </summary>
[JsonConverter(typeof(ValueToStringConverter))]
[SugarColumn(ColumnName = "customer_guid")]
public long CustomerGuid { get; set; }
/// <summary>
/// 描述 :表格数据Guid
/// 空值 : false
/// </summary>
[JsonConverter(typeof(ValueToStringConverter))]
[SugarColumn(ColumnName = "table_data_guid")]
public long TableDataGuid { get; set; }
}
}