49 lines
930 B
C#
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; }
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|