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