using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace WorkOrderApi.Input { public class WorkOrderInput { /// /// 工单编号 /// public string ordercode { get; set; } /// /// 通话唯一ID /// public string unique_id { get; set; } /// /// 通话记录id /// public string callrecordid { get; set; } /// /// 类型id (字典)(分类:咨询、售后、业务办理、投诉、订单、预约登记) /// public string typeid { get; set; } /// /// 工单状态:0未处理,1已处理 /// public int state { get; set; } = 0; //--------------------------------------------------------- /// /// 客户id /// public string customerid { get; set; } /// /// 客户姓名 /// public string name { get; set; } /// /// 单位名称 /// public string company { get; set; } /// /// 来电电话 /// public string callintel { get; set; } /// /// 联系电话 /// public string phone { get; set; } /// /// 省code(自动获取) /// public string province { get; set; } /// /// 市code(自动获取) /// public string city { get; set; } //--------------------------------------------------------- /// /// 客户项目id /// public string proid { get; set; } /// /// 项目名称 /// public string projectname { get; set; } /// /// 项目地点 /// public string address { get; set; } /// /// 故障设备 /// public string faulty_equipment { get; set; } /// /// 故障内容/咨询内容 /// public string content { get; set; } /// /// 故障类型 /// 两级: 一级:话务故障、系统性能(4小时)、软件bug(2小时定位到人,8小时给予预计处理完成时间)、甲方环境(4小时)、商务授权(24小时)、超出维保(24小时)、未知原因(48小时) /// 二级:话务故障:用户自有线路(2小时)、中间件(4小时定位到处理人)、语音交换问题(4小时)] /// public string faulty_typeid { get; set; } /// /// 故障类型 /// 两级: 一级:话务故障、系统性能(4小时)、软件bug(2小时定位到人,8小时给予预计处理完成时间)、甲方环境(4小时)、商务授权(24小时)、超出维保(24小时)、未知原因(48小时) /// 二级:话务故障:用户自有线路(2小时)、中间件(4小时定位到处理人)、语音交换问题(4小时)] /// public string faulty_type2id { get; set; } /// /// 售后来源(字典)(三大类:甲方对施工人员、客服对施工人员、商务部门转接) /// public string sourceid { get; set; } /// /// 处理时效(字典)(2小时、4小时、8小时、24小时、48小时) /// public string productive { get; set; } //--------------------------------------------------------- /// /// 咨询部门id /// public string deptid { get; set; } /// /// 接收人 /// public string touser { get; set; } /// /// 业务类型 /// public string businesstype { get; set; } /// /// 工单有效性,1有效0无效 /// public int iseffective { get; set; } /// /// 是否立即处理,1是0否 /// public int dealinstantly { get; set; } } }