using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using ARW.Model.Models.Business.Customers; namespace ARW.Model.Dto.Business.Customers { /// /// 小程序客户输入对象 /// public class CustomerDto { public int CustomerId { get; set; } public long CustomerGuid { get; set; } public string CustomerName { get; set; } public string CustomerBirth { get; set; } public string CustomerImg { get; set; } public int? CustomerSex { get; set; } public string CustomerPhone { get; set; } public string CustomerXcxOpenid { get; set; } public string CustomerXcxName { get; set; } public string CustomerXcxImg { get; set; } } /// /// 小程序客户查询对象 /// public class CustomerQueryDto : PagerInfo { public string CustomerName { get; set; } public string CustomerXcxName { get; set; } } }