using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using ARW.Model.Models.Business.Carts;
namespace ARW.Model.Dto.Api.Carts
{
///
/// 购物车记录查询对象Api
///
/// @author lwh
/// @date 2023-07-20
///
public class CartQueryDtoApi : PagerInfo
{
public long? CustomerGuid { get; set; }
public long? ShopGuid { get; set; }
}
///
/// 购物车记录详情输入对象Api
///
/// @author lwh
/// @date 2023-07-20
///
public class CartDtoApi
{
[Required(ErrorMessage = "CartGuid不能为空")]
public long CartGuid { get; set; }
}
}