21 lines
465 B
C#
21 lines
465 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using ARW.Model.Models.Business.Carts;
|
|
|
|
namespace ARW.Model.Dto.Api.Carts
|
|
{
|
|
|
|
/// <summary>
|
|
/// 购物车记录查询对象Api
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-07-20
|
|
/// </summary>
|
|
public class CartQueryDtoApi : PagerInfo
|
|
{
|
|
[Required(ErrorMessage = "客户Guid不能为空")]
|
|
public long CustomerGuid { get; set; }
|
|
}
|
|
}
|