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

34 lines
804 B
C#

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