42 lines
895 B
C#
42 lines
895 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 黎文豪
|
|
/// @date 2023-06-07
|
|
/// </summary>
|
|
public class CustomerQueryDtoApi : PagerInfo
|
|
{
|
|
[Required(ErrorMessage = "CustomerGuid不能为空")]
|
|
public long CustomerGuid { get; set; }
|
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 小程序客户详情输入对象Api
|
|
///
|
|
/// @author 黎文豪
|
|
/// @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; }
|
|
|
|
}
|
|
|
|
}
|