key1_beacon_api/ARW.Model/Dto/Api/Custom/GoodsCollections/GoodsCollectionApiDto.cs
2023-10-22 16:34:17 +08:00

34 lines
760 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using ARW.Model.Models.Business.Custom.GoodsCollections;
namespace ARW.Model.Dto.Api.Custom.GoodsCollections
{
/// <summary>
/// 商品收藏查询对象Api
///
/// @author lwh
/// @date 2023-10-22
/// </summary>
public class GoodsCollectionQueryDtoApi : PagerInfo
{
public long CustomerGuid { get; set; }
}
/// <summary>
/// 商品收藏详情输入对象Api
///
/// @author lwh
/// @date 2023-10-22
/// </summary>
public class GoodsCollectionDtoApi
{
[Required(ErrorMessage = "GoodsCollectionGuid不能为空")]
public long GoodsCollectionGuid { get; set; }
}
}