using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using ARW.Model.Models.Business.Custom.CustomerAddresses;
namespace ARW.Model.Dto.Api.Custom.CustomerAddresses
{
///
/// 客户收货地址查询对象Api
///
/// @author admin
/// @date 2023-06-09
///
public class CustomerAddressQueryDtoApi : PagerInfo
{
public long CustomerAddressCustomerGuid { get; set; }
public string CustomerAddressName { get; set; }
public string CustomerAddressPhone { get; set; }
}
///
/// 客户收货地址详情输入对象Api
///
/// @author admin
/// @date 2023-06-09
///
public class CustomerAddressDtoApi
{
[Required(ErrorMessage = "CustomerAddressGuid不能为空")]
public long CustomerAddressGuid { get; set; }
}
}