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