| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace YTSoft.BaseCallCenter.MVCWeb.Models
- {
- public class ExToExcel
- {
- public string dateParty
- {
- get;
- set;
- }
- public string workorderNum
- {
- get;
- set;
- }
- public string cusName
- {
- get;
- set;
- }
- public string phoneNumber
- {
- get;
- set;
- }
- public string userInfo
- {
- get;
- set;
- }
- public int? status
- {
- get;
- set;
- }
- public int? bussType
- {
- get;
- set;
- }
- public int? detailType
- {
- get;
- set;
- }
- public string Content
- {
- get;
- set;
- }
- public int? GoType
- {
- get;
- set;
- }
- public int? FromType
- {
- get;
- set;
- }
- public int? F_HASTENCOUNTS
- {
- get;
- set;
- }
- public int? F_RETURNVISITRESULT
- {
- get;
- set;
- }
- public string level
- {
- get;
- set;
- }
- public int? labelname
- {
- get;
- set;
- }
- }
- }
|