35 lines
1.0 KiB
C#
35 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using ARW.Model.Models.Business.Customers;
|
|
|
|
namespace ARW.Model.Dto.Business.Customers
|
|
{
|
|
/// <summary>
|
|
/// 小程序客户输入对象
|
|
/// </summary>
|
|
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; }
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 小程序客户查询对象
|
|
/// </summary>
|
|
public class CustomerQueryDto : PagerInfo
|
|
{
|
|
public string CustomerName { get; set; }
|
|
public string CustomerXcxName { get; set; }
|
|
}
|
|
}
|