key1_beacon_api/ARW.Model/Dto/Api/Custom/Customers/CustomerApiDto.cs
2023-06-24 23:21:02 +08:00

42 lines
883 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using ARW.Model.Models.Business.Custom.Customers;
namespace ARW.Model.Dto.Api.Custom.Customers
{
/// <summary>
/// 小程序客户查询对象Api
///
/// @author lwh
/// @date 2023-06-07
/// </summary>
public class CustomerQueryDtoApi : PagerInfo
{
[Required(ErrorMessage = "CustomerGuid不能为空")]
public long CustomerGuid { get; set; }
}
/// <summary>
/// 小程序客户详情输入对象Api
///
/// @author lwh
/// @date 2023-06-07
/// </summary>
public class CustomerDtoApi
{
public long CustomerGuid { get; set; }
public string CustomerNickname { get; set; }
public string CustomerAvatar { get; set; }
public int CustomerGender { get; set; }
}
}