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.
73 lines
1.2 KiB
73 lines
1.2 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 ADGroupQuery:JdObject{
|
||
|
[JsonProperty("id")]
|
||
|
public long
|
||
|
|
||
|
id
|
||
|
{ get; set; }
|
||
|
[JsonProperty("doubleFee")]
|
||
|
public double
|
||
|
|
||
|
doubleFee
|
||
|
{ get; set; }
|
||
|
[JsonProperty("doubleOutFee")]
|
||
|
public double
|
||
|
|
||
|
doubleOutFee
|
||
|
{ get; set; }
|
||
|
[JsonProperty("doubleSearchFee")]
|
||
|
public double
|
||
|
|
||
|
doubleSearchFee
|
||
|
{ get; set; }
|
||
|
[JsonProperty("name")]
|
||
|
public string
|
||
|
|
||
|
name
|
||
|
{ get; set; }
|
||
|
[JsonProperty("area")]
|
||
|
public string
|
||
|
|
||
|
area
|
||
|
{ get; set; }
|
||
|
[JsonProperty("areaId")]
|
||
|
public string
|
||
|
|
||
|
areaId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("groupDirection")]
|
||
|
public string
|
||
|
|
||
|
groupDirection
|
||
|
{ get; set; }
|
||
|
[JsonProperty("position")]
|
||
|
public string
|
||
|
|
||
|
position
|
||
|
{ get; set; }
|
||
|
[JsonProperty("billingType")]
|
||
|
public int
|
||
|
|
||
|
billingType
|
||
|
{ get; set; }
|
||
|
[JsonProperty("status")]
|
||
|
public int
|
||
|
|
||
|
status
|
||
|
{ get; set; }
|
||
|
[JsonProperty("pin")]
|
||
|
public string
|
||
|
|
||
|
pin
|
||
|
{ get; set; }
|
||
|
}
|
||
|
}
|