using System; using System.Collections.Generic; using SqlSugar; using OfficeOpenXml.Attributes; using Newtonsoft.Json; namespace ARW.Model.Models.Business.GoodsManager.GoodsServicess.GoodsServicesRels { /// /// 商品服务与承诺关系表,数据实体对象 /// /// @author 黎文豪 /// @date 2023-06-18 /// [SugarTable("tb_goods_services_rel")] public class GoodsServicesRel : BusinessBase { /// /// 描述 : /// 空值 : false /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 描述 : /// 空值 : false /// [JsonConverter(typeof(ValueToStringConverter))] [SugarColumn(IsPrimaryKey = true, IsIdentity = false)] public long Guid { get; set; } /// /// 描述 :店铺guid /// 空值 : false /// [JsonConverter(typeof(ValueToStringConverter))] [SugarColumn(ColumnName = "shop_guid")] public long ShopGuid { get; set; } /// /// 描述 :商品guid /// 空值 : false /// [JsonConverter(typeof(ValueToStringConverter))] [SugarColumn(ColumnName = "goods_guid")] public long GoodsGuid { get; set; } /// /// 描述 :服务与承诺guid /// 空值 : false /// [JsonConverter(typeof(ValueToStringConverter))] [SugarColumn(ColumnName = "service_guid")] public long ServiceGuid { get; set; } } }