emoticon_api/ARW.Model/Dto/Business/Custom/GoodsBrowsingHistorys/GoodsBrowsingHistoryDto.cs
2023-10-22 17:23:10 +08:00

49 lines
930 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using ARW.Model.Models.Business.Custom.GoodsBrowsingHistorys;
namespace ARW.Model.Dto.Business.Custom.GoodsBrowsingHistorys
{
/// <summary>
/// 商品浏览记录输入对象
///
/// @author lwh
/// @date 2023-10-22
/// </summary>
public class GoodsBrowsingHistoryDto
{
public int GoodsBrowsingHistoryId { get; set; }
public long GoodsBrowsingHistoryGuid { 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 GoodsBrowsingHistoryQueryDto : PagerInfo
{
public string ids { get; set; }
}
}