|
@@ -0,0 +1,646 @@
|
|
|
+#pragma warning disable 1591
|
|
|
+using PL.Base;
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Data;
|
|
|
+using PL.Server.Entity;
|
|
|
+using PL.Server.Entity.Entity;
|
|
|
+
|
|
|
+namespace FMS.Entity
|
|
|
+{
|
|
|
+ public partial class CRM_CUSTOMER : EntityBase
|
|
|
+ {
|
|
|
+ public CRM_CUSTOMER()
|
|
|
+ {
|
|
|
+ base.Table = new TableInfo { Name = "FMS_CRM_CUSTOMER" };
|
|
|
+ base.Columns = CRM_CUSTOMER_COLUMN.Instance;
|
|
|
+ this.Init();
|
|
|
+ }
|
|
|
+
|
|
|
+ public CRM_CUSTOMER(string keyField):this()
|
|
|
+ {
|
|
|
+ base.KeyField = keyField;
|
|
|
+ }
|
|
|
+
|
|
|
+ public CRM_CUSTOMER(string keyField,string keyValue):this()
|
|
|
+ {
|
|
|
+ base.KeyField = keyField;
|
|
|
+ this[keyField]= keyValue;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public CRM_CUSTOMER(EntityBase entityBase)
|
|
|
+ : this()
|
|
|
+ {
|
|
|
+ this.Data = entityBase.Data;
|
|
|
+ }
|
|
|
+
|
|
|
+ #region DataMember
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// GUID
|
|
|
+ /// </summary>
|
|
|
+ public string GUID
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["GUID"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["GUID"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 客商资料代码
|
|
|
+ /// </summary>
|
|
|
+ public string CODE
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["CODE"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["CODE"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 客商三字码
|
|
|
+ /// </summary>
|
|
|
+ public string CODE_PREX
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["CODE_PREX"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["CODE_PREX"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 中文全称
|
|
|
+ /// </summary>
|
|
|
+ public string NAME
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["NAME"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["NAME"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 中文简称
|
|
|
+ /// </summary>
|
|
|
+ public string SHORT_NAME
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["SHORT_NAME"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["SHORT_NAME"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 开户行
|
|
|
+ /// </summary>
|
|
|
+ public string BANK
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["BANK"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["BANK"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 电话
|
|
|
+ /// </summary>
|
|
|
+ public string TEL
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["TEL"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["TEL"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 客商资料类型
|
|
|
+ /// </summary>
|
|
|
+ public string KSZLLX
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["KSZLLX"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["KSZLLX"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 财务代码
|
|
|
+ /// </summary>
|
|
|
+ public string CW_CODE
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["CW_CODE"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["CW_CODE"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 责任销售
|
|
|
+ /// </summary>
|
|
|
+ public string ZRXS
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["ZRXS"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["ZRXS"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 英文全称
|
|
|
+ /// </summary>
|
|
|
+ public string NAME_EN
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["NAME_EN"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["NAME_EN"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 英文简称
|
|
|
+ /// </summary>
|
|
|
+ public string NAME_EN_SHORT
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["NAME_EN_SHORT"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["NAME_EN_SHORT"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 银行账号
|
|
|
+ /// </summary>
|
|
|
+ public string BANK_ACCOUNT
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["BANK_ACCOUNT"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["BANK_ACCOUNT"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 地址
|
|
|
+ /// </summary>
|
|
|
+ public string ADDRESS
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["ADDRESS"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["ADDRESS"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 备注
|
|
|
+ /// </summary>
|
|
|
+ public string REMARK
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["REMARK"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["REMARK"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// IATA
|
|
|
+ /// </summary>
|
|
|
+ public string IATA
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["IATA"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["IATA"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 航协铜牌代码
|
|
|
+ /// </summary>
|
|
|
+ public string HXTP_CODE
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["HXTP_CODE"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["HXTP_CODE"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 集团代码
|
|
|
+ /// </summary>
|
|
|
+ public string GROUP_CODE
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["GROUP_CODE"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["GROUP_CODE"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 集团名称
|
|
|
+ /// </summary>
|
|
|
+ public string GROUP_NAME
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["GROUP_NAME"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["GROUP_NAME"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 公司代码
|
|
|
+ /// </summary>
|
|
|
+ public string COMPANY_CODE
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["COMPANY_CODE"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["COMPANY_CODE"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 公司名称
|
|
|
+ /// </summary>
|
|
|
+ public string COMPANY_NAME
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["COMPANY_NAME"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["COMPANY_NAME"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 创建人
|
|
|
+ /// </summary>
|
|
|
+ public string CREATE_USER
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["CREATE_USER"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["CREATE_USER"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 创建日期
|
|
|
+ /// </summary>
|
|
|
+ public System.Nullable<DateTime> CREATE_DATE
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.DateAccess["CREATE_DATE"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.DateAccess["CREATE_DATE"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 修改人
|
|
|
+ /// </summary>
|
|
|
+ public string UPDATE_USER
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["UPDATE_USER"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["UPDATE_USER"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 修改日期
|
|
|
+ /// </summary>
|
|
|
+ public System.Nullable<DateTime> UPDATE_DATE
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.DateAccess["UPDATE_DATE"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.DateAccess["UPDATE_DATE"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 创建人
|
|
|
+ /// </summary>
|
|
|
+ public string CREATE_USER_NAME
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["CREATE_USER_NAME"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["CREATE_USER_NAME"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 修改人
|
|
|
+ /// </summary>
|
|
|
+ public string UPDATE_USER_NAME
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["UPDATE_USER_NAME"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["UPDATE_USER_NAME"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 组织代码
|
|
|
+ /// </summary>
|
|
|
+ public string NODE_CODE
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["NODE_CODE"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["NODE_CODE"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 组织名称
|
|
|
+ /// </summary>
|
|
|
+ public string NODE_NAME
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["NODE_NAME"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["NODE_NAME"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 生效状态
|
|
|
+ /// </summary>
|
|
|
+ public string STATUS
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["STATUS"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["STATUS"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 社会信用代码
|
|
|
+ /// </summary>
|
|
|
+ public string TY_CODE
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["TY_CODE"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["TY_CODE"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ #endregion
|
|
|
+
|
|
|
+ #region Query Method
|
|
|
+ public CRM_CUSTOMER SingleOrDefault()
|
|
|
+ {
|
|
|
+ return new EntityBuilder<CRM_CUSTOMER>().ToEntityBySql(this.SQLSelect);
|
|
|
+ }
|
|
|
+
|
|
|
+ public CRM_CUSTOMER SingleOrDefault(object ts)
|
|
|
+ {
|
|
|
+ return new EntityBuilder<CRM_CUSTOMER>().ToEntityBySql(this.SQLSelect, ts);
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<CRM_CUSTOMER> ToList()
|
|
|
+ {
|
|
|
+ return new EntityBuilder<CRM_CUSTOMER>().ToListBySql(this.SQLSelect);
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<CRM_CUSTOMER> ToList(object ts)
|
|
|
+ {
|
|
|
+ return new EntityBuilder<CRM_CUSTOMER>().ToListBySql(this.SQLSelect, ts);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static CRM_CUSTOMER SingleOrDefault(string sql)
|
|
|
+ {
|
|
|
+ return SingleOrDefault(sql, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static CRM_CUSTOMER SingleOrDefault(string sql,object ts)
|
|
|
+ {
|
|
|
+ List<CRM_CUSTOMER> list = ToListBySql(sql, ts);
|
|
|
+
|
|
|
+ if (list.Count == 0) return null;
|
|
|
+ else
|
|
|
+ {
|
|
|
+ return list[0];
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public static List<CRM_CUSTOMER> ToListBySql(string sql)
|
|
|
+ {
|
|
|
+ return ToListBySql(sql, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static List<CRM_CUSTOMER> ToListBySql(string sql, object ts)
|
|
|
+ {
|
|
|
+ return new EntityBuilder<CRM_CUSTOMER>().ToListBySql(sql, ts);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static List<CRM_CUSTOMER> ToList(DataTable data)
|
|
|
+ {
|
|
|
+ return new EntityBuilder<CRM_CUSTOMER>().ToList(data);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ #endregion
|
|
|
+
|
|
|
+ public static TDAL<CRM_CUSTOMER, CRM_CUSTOMER_FIELD> DAL
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return new TDAL<CRM_CUSTOMER, CRM_CUSTOMER_FIELD>();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public static CRM_CUSTOMER_FIELD Fields
|
|
|
+ {
|
|
|
+ get { return CRM_CUSTOMER_FIELD.Instance; }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public static EntityBuilder<CRM_CUSTOMER> EntityBuilder = new EntityBuilder<CRM_CUSTOMER>();
|
|
|
+ }
|
|
|
+
|
|
|
+ internal class CRM_CUSTOMER_COLUMN : BaseColumn
|
|
|
+ {
|
|
|
+ public static CRM_CUSTOMER_COLUMN Instance;
|
|
|
+
|
|
|
+ static CRM_CUSTOMER_COLUMN()
|
|
|
+ {
|
|
|
+ Instance = new CRM_CUSTOMER_COLUMN();
|
|
|
+ }
|
|
|
+
|
|
|
+ private CRM_CUSTOMER_COLUMN()
|
|
|
+ {
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "GUID", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "CODE", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "CODE_PREX", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "NAME", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "SHORT_NAME", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "BANK", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "TEL", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "KSZLLX", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "CW_CODE", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "ZRXS", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "NAME_EN", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "NAME_EN_SHORT", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "BANK_ACCOUNT", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "ADDRESS", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "REMARK", Type = "TEXT" ,NText=true });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "IATA", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "HXTP_CODE", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "GROUP_CODE", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "GROUP_NAME", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "COMPANY_CODE", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "COMPANY_NAME", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "CREATE_USER", Type = "TEXT" ,NText=true });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "CREATE_DATE", Type = "DATE" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "UPDATE_USER", Type = "TEXT" ,NText=true });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "UPDATE_DATE", Type = "DATE" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "CREATE_USER_NAME", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "UPDATE_USER_NAME", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "NODE_CODE", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "NODE_NAME", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "STATUS", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "TY_CODE", Type = "TEXT" ,NText=false });
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public class CRM_CUSTOMER_FIELD
|
|
|
+ {
|
|
|
+ private static CRM_CUSTOMER_FIELD instance;
|
|
|
+
|
|
|
+ public static CRM_CUSTOMER_FIELD Instance
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ if (instance == null)
|
|
|
+ {
|
|
|
+ instance = new CRM_CUSTOMER_FIELD();
|
|
|
+ }
|
|
|
+
|
|
|
+ return instance;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public readonly string GUID = "GUID";
|
|
|
+ public readonly string CODE = "CODE";
|
|
|
+ public readonly string CODE_PREX = "CODE_PREX";
|
|
|
+ public readonly string NAME = "NAME";
|
|
|
+ public readonly string SHORT_NAME = "SHORT_NAME";
|
|
|
+ public readonly string BANK = "BANK";
|
|
|
+ public readonly string TEL = "TEL";
|
|
|
+ public readonly string KSZLLX = "KSZLLX";
|
|
|
+ public readonly string CW_CODE = "CW_CODE";
|
|
|
+ public readonly string ZRXS = "ZRXS";
|
|
|
+ public readonly string NAME_EN = "NAME_EN";
|
|
|
+ public readonly string NAME_EN_SHORT = "NAME_EN_SHORT";
|
|
|
+ public readonly string BANK_ACCOUNT = "BANK_ACCOUNT";
|
|
|
+ public readonly string ADDRESS = "ADDRESS";
|
|
|
+ public readonly string REMARK = "REMARK";
|
|
|
+ public readonly string IATA = "IATA";
|
|
|
+ public readonly string HXTP_CODE = "HXTP_CODE";
|
|
|
+ public readonly string GROUP_CODE = "GROUP_CODE";
|
|
|
+ public readonly string GROUP_NAME = "GROUP_NAME";
|
|
|
+ public readonly string COMPANY_CODE = "COMPANY_CODE";
|
|
|
+ public readonly string COMPANY_NAME = "COMPANY_NAME";
|
|
|
+ public readonly string CREATE_USER = "CREATE_USER";
|
|
|
+ public readonly string CREATE_DATE = "CREATE_DATE";
|
|
|
+ public readonly string UPDATE_USER = "UPDATE_USER";
|
|
|
+ public readonly string UPDATE_DATE = "UPDATE_DATE";
|
|
|
+ public readonly string CREATE_USER_NAME = "CREATE_USER_NAME";
|
|
|
+ public readonly string UPDATE_USER_NAME = "UPDATE_USER_NAME";
|
|
|
+ public readonly string NODE_CODE = "NODE_CODE";
|
|
|
+ public readonly string NODE_NAME = "NODE_NAME";
|
|
|
+ public readonly string STATUS = "STATUS";
|
|
|
+ public readonly string TY_CODE = "TY_CODE";
|
|
|
+
|
|
|
+ }
|
|
|
+}
|