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