| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CommonObj.model
- {
- public class channelObj
- {
- [JsonProperty("id")]
- public string id { get; set; }
- [JsonProperty("code")]
- public string code { get; set; }
- [JsonProperty("name")]
- public string name { get; set; }
- [JsonProperty("partnerCode")]
- public string partnerCode { get; set; }
- [JsonProperty("usersName")]
- public string usersName { get; set; }
- [JsonProperty("password")]
- public string password { get; set; }
- [JsonProperty("note")]
- public string note { get; set; }
- [JsonProperty("sysdate")]
- public string sysdate { get; set; }
- [JsonProperty("isAuthen")]
- public string isAuthen { get; set; }
- [JsonProperty("keyEncrypt")]
- public string keyEncrypt { get; set; }
- [JsonProperty("token")]
- public string token { get; set; }
- [JsonProperty("listIp")]
- public string listIp { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|