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.
147 lines
3.2 KiB
C#
147 lines
3.2 KiB
C#
using System;
|
|
using System.Data;
|
|
|
|
namespace DSWeb.Models
|
|
{
|
|
/// <summary>
|
|
/// CRM系统客户信息表
|
|
/// </summary>
|
|
public class CRMClientQuotationDetailEntity
|
|
{
|
|
public CRMClientQuotationDetailEntity()
|
|
{
|
|
}
|
|
|
|
private string _gid;
|
|
/// <summary>
|
|
/// 惟一编号
|
|
/// </summary>
|
|
public string GID
|
|
{
|
|
get { return _gid; }
|
|
set { _gid = value; }
|
|
}
|
|
|
|
private string _linkgid;
|
|
/// <summary>
|
|
/// 主表关联GID
|
|
/// </summary>
|
|
public string LINKGID
|
|
{
|
|
get { return _linkgid; }
|
|
set { _linkgid = value; }
|
|
}
|
|
|
|
private string _feetype;
|
|
/// <summary>
|
|
/// 费用类型
|
|
/// </summary>
|
|
public string FEETYPE
|
|
{
|
|
get { return _feetype; }
|
|
set { _feetype = value; }
|
|
}
|
|
|
|
private string _feename;
|
|
/// <summary>
|
|
/// 费用中文名称
|
|
/// </summary>
|
|
public string FEENAME
|
|
{
|
|
get { return _feename; }
|
|
set { _feename = value; }
|
|
}
|
|
|
|
private string _unit;
|
|
/// <summary>
|
|
/// 单位标准
|
|
/// </summary>
|
|
public string UNIT
|
|
{
|
|
get { return _unit; }
|
|
set { _unit = value; }
|
|
}
|
|
|
|
private decimal _unitprice;
|
|
/// <summary>
|
|
/// 单价
|
|
/// </summary>
|
|
public decimal UNITPRICE
|
|
{
|
|
get { return _unitprice; }
|
|
set { _unitprice = value; }
|
|
}
|
|
|
|
private string _currency;
|
|
/// <summary>
|
|
/// 币别
|
|
/// </summary>
|
|
public string CURRENCY
|
|
{
|
|
get { return _currency; }
|
|
set { _currency = value; }
|
|
}
|
|
|
|
private string _carrier;
|
|
/// <summary>
|
|
/// 船公司
|
|
/// </summary>
|
|
public string CARRIER
|
|
{
|
|
get { return _carrier; }
|
|
set { _carrier = value; }
|
|
}
|
|
|
|
private string _remark;
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string REMARK
|
|
{
|
|
get { return _remark; }
|
|
set { _remark = 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 _modifieduser;
|
|
/// <summary>
|
|
/// 最后一次更新操作人
|
|
/// </summary>
|
|
public string MODIFIEDUSER
|
|
{
|
|
get { return _modifieduser; }
|
|
set { _modifieduser = value; }
|
|
}
|
|
|
|
private DateTime _modifiedtime;
|
|
/// <summary>
|
|
/// 最后一次更新操作时间
|
|
/// </summary>
|
|
public DateTime MODIFIEDTIME
|
|
{
|
|
get { return _modifiedtime; }
|
|
set { _modifiedtime = value; }
|
|
}
|
|
//
|
|
}
|
|
}
|