You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.4 KiB
63 lines
1.4 KiB
3 years ago
|
using System;
|
||
|
using System.Xml.Serialization;
|
||
|
using System.Collections.Generic;
|
||
|
using Newtonsoft.Json;
|
||
|
using Jd.Api.Domain;
|
||
|
namespace Jd.Api.Domain
|
||
|
{
|
||
|
|
||
|
[Serializable]
|
||
|
public class ServiceCustomerInfoExport:JdObject{
|
||
|
[JsonProperty("customerPin")]
|
||
|
public string
|
||
|
|
||
|
customerPin
|
||
|
{ get; set; }
|
||
|
[JsonProperty("customerName")]
|
||
|
public string
|
||
|
|
||
|
customerName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("customerContactName")]
|
||
|
public string
|
||
|
|
||
|
customerContactName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("customerTel")]
|
||
|
public string
|
||
|
|
||
|
customerTel
|
||
|
{ get; set; }
|
||
|
[JsonProperty("customerMobilePhone")]
|
||
|
public string
|
||
|
|
||
|
customerMobilePhone
|
||
|
{ get; set; }
|
||
|
[JsonProperty("customerEmail")]
|
||
|
public string
|
||
|
|
||
|
customerEmail
|
||
|
{ get; set; }
|
||
|
[JsonProperty("customerPostcode")]
|
||
|
public string
|
||
|
|
||
|
customerPostcode
|
||
|
{ get; set; }
|
||
|
[JsonProperty("customerGrade")]
|
||
|
public int
|
||
|
|
||
|
customerGrade
|
||
|
{ get; set; }
|
||
|
[JsonProperty("desen_customerTel")]
|
||
|
public string
|
||
|
|
||
|
desenCustomerTel
|
||
|
{ get; set; }
|
||
|
[JsonProperty("desen_customerMobilePhone")]
|
||
|
public string
|
||
|
|
||
|
desenCustomerMobilePhone
|
||
|
{ get; set; }
|
||
|
}
|
||
|
}
|