self_mall_api/ARW.Model/Dto/Api/Carts/CartApiDto.cs

22 lines
467 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; }
}
}