49 lines
888 B
C#
49 lines
888 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using ARW.Model.Models.Business.Custom.GoodsCollections;
|
|
|
|
namespace ARW.Model.Dto.Business.Custom.GoodsCollections
|
|
{
|
|
/// <summary>
|
|
/// 商品收藏输入对象
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-22
|
|
/// </summary>
|
|
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; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 商品收藏查询对象
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-22
|
|
/// </summary>
|
|
public class GoodsCollectionQueryDto : PagerInfo
|
|
{
|
|
|
|
public string ids { get; set; }
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|