You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb/Models/CRMInfoFAQEntity.cs

211 lines
4.7 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
namespace DSWeb.Models
{
public class CRMInfoFAQEntity
{
private string _gid;
/// <summary>
/// 主键GID
/// </summary>
public string GID
{
get { return _gid; }
set { _gid = value; }
}
private string _problemgid;
/// <summary>
/// 主问题GID
/// </summary>
public string PROBLEMGID
{
get { return _problemgid; }
set { _problemgid = value; }
}
private string _problemtype;
/// <summary>
/// 问题类型
/// </summary>
public string PROBLEMTYPE
{
get { return _problemtype; }
set { _problemtype = value; }
}
private string _problemtitle;
/// <summary>
/// 问题标题
/// </summary>
public string PROBLEMTITLE
{
get { return _problemtitle; }
set { _problemtitle = value; }
}
private string _problemcontent;
/// <summary>
/// 内容描述
/// </summary>
public string PROBLEMCONTENT
{
get { return _problemcontent; }
set { _problemcontent = value; }
}
private bool _isproblem;
/// <summary>
/// 是否问题
/// </summary>
public bool ISPROBLEM
{
get { return _isproblem; }
set { _isproblem = value; }
}
private bool _istype;
/// <summary>
/// 是否继续提问
/// </summary>
public bool ISTYPE
{
get { return _istype; }
set { _istype = value; }
}
private string _createuser;
/// <summary>
/// 创建人
/// </summary>
public string CREATEUSER
{
get { return _createuser; }
set { _createuser = value; }
}
private DateTime _createtime;
/// <summary>
/// 创建时间
/// </summary>
public DateTime CREATETIME
{
get { return _createtime; }
set { _createtime = value; }
}
private string _portload;
/// <summary>
/// PORTLOAD
/// </summary>
public string PORTLOAD
{
get { return _portload; }
set { _portload = value; }
}
private string _portdischarge;
/// <summary>
/// PORTDISCHARGE
/// </summary>
public string PORTDISCHARGE
{
get { return _portdischarge; }
set { _portdischarge = value; }
}
private DateTime _etd;
/// <summary>
/// ETD
/// </summary>
public DateTime ETD
{
get { return _etd; }
set { _etd = value; }
}
private string _cntrtotal;
/// <summary>
/// CNTRTOTAL
/// </summary>
public string CNTRTOTAL
{
get { return _cntrtotal; }
set { _cntrtotal = value; }
}
private bool _isthrough;
/// <summary>
/// ISTHROUGH
/// </summary>
public bool ISTHROUGH
{
get { return _isthrough; }
set { _isthrough = value; }
}
private string _goodsname;
/// <summary>
/// GOODSNAME
/// </summary>
public string GOODSNAME
{
get { return _goodsname; }
set { _goodsname = value; }
}
private decimal _kgs;
/// <summary>
/// KGS
/// </summary>
public decimal KGS
{
get { return _kgs; }
set { _kgs = value; }
}
private decimal _price;
/// <summary>
/// PRICE
/// </summary>
public decimal PRICE
{
get { return _price; }
set { _price = value; }
}
private string _shortname;
/// <summary>
/// SHORTNAME
/// </summary>
public string SHORTNAME
{
get { return _shortname; }
set { _shortname = value; }
}
private string _CLIENTGID;
/// <summary>
/// CLIENTGID
/// </summary>
public string CLIENTGID
{
get { return _CLIENTGID; }
set { _CLIENTGID = value; }
}
private string _FAQREPLYMAN;
/// <summary>
/// CLIENTGID
/// </summary>
public string FAQREPLYMAN
{
get { return _FAQREPLYMAN; }
set { _FAQREPLYMAN = value; }
}
}
}