44 lines
937 B
C#
44 lines
937 B
C#
using Newtonsoft.Json;
|
|
using OfficeOpenXml.Attributes;
|
|
using SqlSugar;
|
|
using System;
|
|
|
|
namespace ARW.Model.Vo.Business.GoodsManager.GoodsServicess.GoodsServicesRels
|
|
{
|
|
/// <summary>
|
|
/// 商品服务与承诺关系表展示对象
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-06-18
|
|
/// </summary>
|
|
public class GoodsServicesRelVo
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// </summary>
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 描述 :店铺guid
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long ShopGuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :商品guid
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long GoodsGuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :服务与承诺id
|
|
/// </summary>
|
|
public long ServiceId { get; set; }
|
|
|
|
}
|
|
}
|