| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using CommonObj.model;
- using Newtonsoft.Json;
- namespace ResfullApi.Models
- {
- public class reportCountDailyObj
- {
- [JsonProperty("id")]
- public string id { get; set; }
- [JsonProperty("reportDate")]
- public string reportDate { get; set; }
- [JsonProperty("campaignId")]
- public string campaignId { get; set; }
- [JsonProperty("campaignName")]
- public string campaignName { get; set; }
- [JsonProperty("priority")]
- public string priority { get; set; }
- [JsonProperty("isDefault")]
- public string isDefault { get; set; }
- [JsonProperty("isMyService")]
- public string isMyService { get; set; }
- [JsonProperty("addType")]
- public string addType { get; set; }
- [JsonProperty("serviceId")]
- public string serviceId { get; set; }
- [JsonProperty("serviceName")]
- public string serviceName { get; set; }
- [JsonProperty("countSend1")]
- public string countSend1 { get; set; }
- [JsonProperty("countSuccess1")]
- public string countSuccess1 { get; set; }
- [JsonProperty("countFail1")]
- public string countFail1 { get; set; }
- [JsonProperty("countPress1")]
- public string countPress1 { get; set; }
- [JsonProperty("countSend2")]
- public string countSend2 { get; set; }
- [JsonProperty("countPress2")]
- public string countPress2 { get; set; }
- [JsonProperty("countRegSuccess")]
- public string countRegSuccess { get; set; }
- [JsonProperty("countRegFail")]
- public string countRegFail { get; set; }
- [JsonProperty("insertTime")]
- public string insertTime { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class reportCountDailyObjList : Response
- {
- [JsonProperty("rowsOnPage")]
- public string rowsOnPage { get; set; }
- [JsonProperty("seqPage")]
- public string seqPage { get; set; }
- [JsonProperty("totalPage")]
- public string totalPage { get; set; }
- [JsonProperty("list")]
- public reportCountDailyObj[] list { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class reportErrorDailyObj
- {
- [JsonProperty("id")]
- public string id { get; set; }
- [JsonProperty("reportDate")]
- public string reportDate { get; set; }
- [JsonProperty("campaignId")]
- public string campaignId { get; set; }
- [JsonProperty("serviceId")]
- public string serviceId { get; set; }
- [JsonProperty("errorCode")]
- public string errorCode { get; set; }
- [JsonProperty("countNum")]
- public string countNum { get; set; }
- [JsonProperty("insertTime")]
- public string insertTime { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class reportErrorDailyObjList : Response
- {
- [JsonProperty("list")]
- public reportErrorDailyObj[] list { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class hourlyImpressionsObj
- {
- [JsonProperty("hourLabel")]
- public string hourLabel { get; set; }
- [JsonProperty("hourValue")]
- public string hourValue { get; set; }
- [JsonProperty("campaignId")]
- public string campaignId { get; set; }
- [JsonProperty("campaignName")]
- public string campaignName { get; set; }
- [JsonProperty("serviceId")]
- public string serviceId { get; set; }
- [JsonProperty("serviceName")]
- public string serviceName { get; set; }
- [JsonProperty("countImpressions")]
- public string countImpressions { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class hourlyImpressionsObjList : Response
- {
- [JsonProperty("list")]
- public hourlyImpressionsObj[] list { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class pushUssdDetailObj
- {
- [JsonProperty("id")]
- public string id { get; set; }
- [JsonProperty("requestId")]
- public string requestId { get; set; }
- [JsonProperty("campaignId")]
- public string campaignId { get; set; }
- [JsonProperty("campaignName")]
- public string campaignName { get; set; }
- [JsonProperty("serviceId")]
- public string serviceId { get; set; }
- [JsonProperty("msisdn")]
- public string msisdn { get; set; }
- [JsonProperty("sendTime")]
- public string sendTime { get; set; }
- [JsonProperty("sendStatus")]
- public string sendStatus { get; set; }
- [JsonProperty("totalStep")]
- public string totalStep { get; set; }
- [JsonProperty("isStep1")]
- public string isStep1 { get; set; }
- [JsonProperty("step1Time")]
- public string step1Time { get; set; }
- [JsonProperty("isStep2")]
- public string isStep2 { get; set; }
- [JsonProperty("step2Time")]
- public string step2Time { get; set; }
- [JsonProperty("errorCode")]
- public string errorCode { get; set; }
- [JsonProperty("isSuccess")]
- public string isSuccess { get; set; }
- [JsonProperty("insertTime")]
- public string insertTime { get; set; }
- [JsonProperty("lastUpdate")]
- public string lastUpdate { get; set; }
- }
- public class pushUssdDetailObjList : Response
- {
- [JsonProperty("rowsOnPage")]
- public string rowsOnPage { get; set; }
- [JsonProperty("seqPage")]
- public string seqPage { get; set; }
- [JsonProperty("totalPage")]
- public string totalPage { get; set; }
- [JsonProperty("list")]
- public pushUssdDetailObj[] list { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|