using System; using System.Collections.Generic; using System.Web; namespace DSWeb.Models { public class JsonCRMClientEntity { #region 私有成员 private string _gid;//主键唯一值 private string _code_name;//客户代码 private string _short_name;//客户简称 private string _description;//客户中文名称或者描述信息 private string _FARCODE;//财务应收帐款代码 private string _FAPCODE;//财务应付帐款代码 #endregion public JsonCRMClientEntity() { } #region 读写属性 /// /// 主键唯一值 /// public string CRMClient1 { get { return _gid; } set { _gid = value; } } /// /// 客户代码 /// public string CRMClient2 { get { return _code_name; } set { _code_name = value; } } /// /// 客户简称 /// public string CRMClient3 { get { return _short_name; } set { _short_name = value; } } /// /// 客户中文名称或者描述信息 /// public string CRMClient4 { get { return _description; } set { _description = value; } } /// /// 财务应收帐款代码 /// public string CRMClient5 { get { return _FARCODE; } set { _FARCODE = value; } } /// /// 财务应付帐款代码 /// public string CRMClient6 { get { return _FAPCODE; } set { _FAPCODE = value; } } #endregion } }