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