using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Web;
|
|
namespace MailQuery.Models
|
{
|
|
/*
|
{
|
"client": "CCS-2023",
|
"msgno": "202201",
|
"email": "",
|
"mailorname": "",
|
"mailortel": "",
|
"createdate_from": "",
|
"createdate_to": "2022-01-31",
|
"powerno": ""
|
}
|
|
*/
|
public class queryCond
|
{
|
public string client { get; set; }
|
public string msgno { get; set; }
|
public string email { get; set; }
|
public string mailorname { get; set; }
|
public string mailortel { get; set; }
|
public string createdate_from { get; set; }
|
public string createdate_to { get; set; }
|
public string powerno { get; set; }
|
|
}
|
|
/*
|
* {
|
msgno: "20231231001",
|
email: "someone@taipower.com.tw",
|
mailorname: "anonymous",
|
mailortel: "0987654321",
|
masterunit: "信件處理中心",
|
unitname: "信件處理中心",
|
codedesc: "信件待問卷",
|
catename: "用電申請"
|
},
|
*/
|
public class CsmsResult
|
{
|
public string msgno { get; set; }
|
public string email { get; set; }
|
public string mailorname { get; set; }
|
public string mailortel { get; set; }
|
public string masterunit { get; set; }
|
public string unitname { get; set; }
|
public string selfdoneddate { get; set; }
|
public string allowedddate { get; set; }
|
|
public string codedesc { get; set; }
|
public string catename { get; set; }
|
|
public string powerno { get; set; }
|
|
public string ismaster { get; set; }
|
}
|
}
|
|