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