|
|
using System;
|
|
|
using System.Text;
|
|
|
using System.Collections.Generic;
|
|
|
using System.Data;
|
|
|
namespace DSWeb.SoftMng.Model
|
|
|
{
|
|
|
//Feedback
|
|
|
public class Feedback
|
|
|
{
|
|
|
/// <summary>
|
|
|
/// id
|
|
|
/// </summary>
|
|
|
private int _id;
|
|
|
public int id
|
|
|
{
|
|
|
get { return _id; }
|
|
|
set { _id = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// feedbackID
|
|
|
/// </summary>
|
|
|
private string _feedbackid;
|
|
|
public string feedbackID
|
|
|
{
|
|
|
get { return _feedbackid; }
|
|
|
set { _feedbackid = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 反馈类型
|
|
|
/// </summary>
|
|
|
private int? _feedbacktype;
|
|
|
public int? feedbackType
|
|
|
{
|
|
|
get { return _feedbacktype; }
|
|
|
set { _feedbacktype = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 问题
|
|
|
/// </summary>
|
|
|
private string _question;
|
|
|
public string question
|
|
|
{
|
|
|
get { return _question; }
|
|
|
set { _question = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// productName
|
|
|
/// </summary>
|
|
|
private string _productname;
|
|
|
public string productName
|
|
|
{
|
|
|
get { return _productname; }
|
|
|
set { _productname = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 问题状态(0:未完成 -1:客户取消 1:已完成 2:验收)
|
|
|
/// </summary>
|
|
|
private int? _status;
|
|
|
public int? status
|
|
|
{
|
|
|
get { return _status; }
|
|
|
set { _status = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 客户
|
|
|
/// </summary>
|
|
|
private string _companyid;
|
|
|
public string companyID
|
|
|
{
|
|
|
get { return _companyid; }
|
|
|
set { _companyid = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// department
|
|
|
/// </summary>
|
|
|
private string _department;
|
|
|
public string department
|
|
|
{
|
|
|
get { return _department; }
|
|
|
set { _department = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 提问人
|
|
|
/// </summary>
|
|
|
private string _master;
|
|
|
public string master
|
|
|
{
|
|
|
get { return _master; }
|
|
|
set { _master = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 提问人联系方式
|
|
|
/// </summary>
|
|
|
private string _masterphone;
|
|
|
public string masterPhone
|
|
|
{
|
|
|
get { return _masterphone; }
|
|
|
set { _masterphone = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// masterEmail
|
|
|
/// </summary>
|
|
|
private string _masteremail;
|
|
|
public string masterEmail
|
|
|
{
|
|
|
get { return _masteremail; }
|
|
|
set { _masteremail = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 客服经理
|
|
|
/// </summary>
|
|
|
private string _custmanager;
|
|
|
public string custManager
|
|
|
{
|
|
|
get { return _custmanager; }
|
|
|
set { _custmanager = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 客服经理联系方式
|
|
|
/// </summary>
|
|
|
private string _telephone;
|
|
|
public string telephone
|
|
|
{
|
|
|
get { return _telephone; }
|
|
|
set { _telephone = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// email
|
|
|
/// </summary>
|
|
|
private string _email;
|
|
|
public string email
|
|
|
{
|
|
|
get { return _email; }
|
|
|
set { _email = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// qq
|
|
|
/// </summary>
|
|
|
private string _qq;
|
|
|
public string qq
|
|
|
{
|
|
|
get { return _qq; }
|
|
|
set { _qq = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 直属客服
|
|
|
/// </summary>
|
|
|
private string _dirmaster;
|
|
|
public string dirMaster
|
|
|
{
|
|
|
get { return _dirmaster; }
|
|
|
set { _dirmaster = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// dirPhone
|
|
|
/// </summary>
|
|
|
private string _dirphone;
|
|
|
public string dirPhone
|
|
|
{
|
|
|
get { return _dirphone; }
|
|
|
set { _dirphone = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// dirEmail
|
|
|
/// </summary>
|
|
|
private string _diremail;
|
|
|
public string dirEmail
|
|
|
{
|
|
|
get { return _diremail; }
|
|
|
set { _diremail = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// dirQQ
|
|
|
/// </summary>
|
|
|
private string _dirqq;
|
|
|
public string dirQQ
|
|
|
{
|
|
|
get { return _dirqq; }
|
|
|
set { _dirqq = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 处理客服
|
|
|
/// </summary>
|
|
|
private string _promaster;
|
|
|
public string proMaster
|
|
|
{
|
|
|
get { return _promaster; }
|
|
|
set { _promaster = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// proPhone
|
|
|
/// </summary>
|
|
|
private string _prophone;
|
|
|
public string proPhone
|
|
|
{
|
|
|
get { return _prophone; }
|
|
|
set { _prophone = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// proEmail
|
|
|
/// </summary>
|
|
|
private string _proemail;
|
|
|
public string proEmail
|
|
|
{
|
|
|
get { return _proemail; }
|
|
|
set { _proemail = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// proQQ
|
|
|
/// </summary>
|
|
|
private string _proqq;
|
|
|
public string proQQ
|
|
|
{
|
|
|
get { return _proqq; }
|
|
|
set { _proqq = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// beginDate
|
|
|
/// </summary>
|
|
|
private DateTime? _begindate;
|
|
|
public DateTime? beginDate
|
|
|
{
|
|
|
get { return _begindate; }
|
|
|
set { _begindate = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// endDate
|
|
|
/// </summary>
|
|
|
private DateTime? _enddate;
|
|
|
public DateTime? endDate
|
|
|
{
|
|
|
get { return _enddate; }
|
|
|
set { _enddate = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 维护方式
|
|
|
/// </summary>
|
|
|
private int? _action;
|
|
|
public int? action
|
|
|
{
|
|
|
get { return _action; }
|
|
|
set { _action = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 维护方式
|
|
|
/// </summary>
|
|
|
private string _actiontype;
|
|
|
public string actionType
|
|
|
{
|
|
|
get { return _actiontype; }
|
|
|
set { _actiontype = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 维护费用
|
|
|
/// </summary>
|
|
|
private decimal? _expense;
|
|
|
public decimal? expense
|
|
|
{
|
|
|
get { return _expense; }
|
|
|
set { _expense = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 客户项目
|
|
|
/// </summary>
|
|
|
private string _project;
|
|
|
public string project
|
|
|
{
|
|
|
get { return _project; }
|
|
|
set { _project = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 完成日期
|
|
|
/// </summary>
|
|
|
private DateTime? _completedate;
|
|
|
public DateTime? completeDate
|
|
|
{
|
|
|
get { return _completedate; }
|
|
|
set { _completedate = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 验收意见
|
|
|
/// </summary>
|
|
|
private string _acceptancesuggestion;
|
|
|
public string acceptanceSuggestion
|
|
|
{
|
|
|
get { return _acceptancesuggestion; }
|
|
|
set { _acceptancesuggestion = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 验收人
|
|
|
/// </summary>
|
|
|
private string _acceptancemaster;
|
|
|
public string acceptanceMaster
|
|
|
{
|
|
|
get { return _acceptancemaster; }
|
|
|
set { _acceptancemaster = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 验收日期
|
|
|
/// </summary>
|
|
|
private DateTime? _acceptancedate;
|
|
|
public DateTime? acceptanceDate
|
|
|
{
|
|
|
get { return _acceptancedate; }
|
|
|
set { _acceptancedate = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// createUser
|
|
|
/// </summary>
|
|
|
private string _createuser;
|
|
|
public string createUser
|
|
|
{
|
|
|
get { return _createuser; }
|
|
|
set { _createuser = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// createDate
|
|
|
/// </summary>
|
|
|
private DateTime? _createdate;
|
|
|
public DateTime? createDate
|
|
|
{
|
|
|
get { return _createdate; }
|
|
|
set { _createdate = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// modifyUser
|
|
|
/// </summary>
|
|
|
private string _modifyuser;
|
|
|
public string modifyUser
|
|
|
{
|
|
|
get { return _modifyuser; }
|
|
|
set { _modifyuser = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// modifyDate
|
|
|
/// </summary>
|
|
|
private DateTime? _modifydate;
|
|
|
public DateTime? modifyDate
|
|
|
{
|
|
|
get { return _modifydate; }
|
|
|
set { _modifydate = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 是否隐藏(0:否 1:是)
|
|
|
/// </summary>
|
|
|
private bool? _isdelete;
|
|
|
public bool? isDelete
|
|
|
{
|
|
|
get { return _isdelete; }
|
|
|
set { _isdelete = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 用户类型
|
|
|
/// </summary>
|
|
|
private int? _usertype;
|
|
|
public int? userType
|
|
|
{
|
|
|
get { return _usertype; }
|
|
|
set { _usertype = value; }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 附件
|
|
|
/// </summary>
|
|
|
private string _attachment;
|
|
|
public string attachMent
|
|
|
{
|
|
|
get { return _attachment; }
|
|
|
set { _attachment = value; }
|
|
|
}
|
|
|
|
|
|
public string CUST_MOBILE { get; set; }
|
|
|
public string COMPANY_NAME { get; set; }
|
|
|
public string SOURCE_TYPE { get; set; }
|
|
|
public DateTime? ACCEPT_TIME { get; set; }
|
|
|
public string PROCESS_RESULT { get; set; }
|
|
|
}
|
|
|
}
|