| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- 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;
- }
- }
- }
|