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 { [Required(ErrorMessage = "客户Guid不能为空")] public long CustomerGuid { get; set; } } }