|
@@ -0,0 +1,774 @@
|
|
|
+#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 BD_KY_GBJ : EntityBase
|
|
|
+ {
|
|
|
+ public BD_KY_GBJ()
|
|
|
+ {
|
|
|
+ base.Table = new TableInfo { Name = "FMS_BD_KY_GBJ" };
|
|
|
+ base.Columns = BD_KY_GBJ_COLUMN.Instance;
|
|
|
+ this.Init();
|
|
|
+ }
|
|
|
+
|
|
|
+ public BD_KY_GBJ(string keyField):this()
|
|
|
+ {
|
|
|
+ base.KeyField = keyField;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BD_KY_GBJ(string keyField,string keyValue):this()
|
|
|
+ {
|
|
|
+ base.KeyField = keyField;
|
|
|
+ this[keyField]= keyValue;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public BD_KY_GBJ(EntityBase entityBase)
|
|
|
+ : this()
|
|
|
+ {
|
|
|
+ this.Data = entityBase.Data;
|
|
|
+ }
|
|
|
+
|
|
|
+ #region DataMember
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 主键
|
|
|
+ /// </summary>
|
|
|
+ public string GUID
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["GUID"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["GUID"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 产品名称
|
|
|
+ /// </summary>
|
|
|
+ public string PRODUCT_NAME
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["PRODUCT_NAME"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["PRODUCT_NAME"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 航空公司
|
|
|
+ /// </summary>
|
|
|
+ public string HKGS
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["HKGS"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["HKGS"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 始发港
|
|
|
+ /// </summary>
|
|
|
+ public string SFG
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["SFG"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["SFG"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 目的港
|
|
|
+ /// </summary>
|
|
|
+ public string MDG
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["MDG"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["MDG"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 中转港
|
|
|
+ /// </summary>
|
|
|
+ public string ZZG
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["ZZG"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["ZZG"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 航班日期
|
|
|
+ /// </summary>
|
|
|
+ public System.Nullable<DateTime> HB_DATE
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.DateAccess["HB_DATE"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.DateAccess["HB_DATE"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 航次
|
|
|
+ /// </summary>
|
|
|
+ public string HC
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["HC"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["HC"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 货物类型
|
|
|
+ /// </summary>
|
|
|
+ public string HWLX
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["HWLX"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["HWLX"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 指定客户
|
|
|
+ /// </summary>
|
|
|
+ public string ZDKH
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["ZDKH"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["ZDKH"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 毛重
|
|
|
+ /// </summary>
|
|
|
+ public System.Nullable<double> MZ
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.DoubleAccess["MZ"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.DoubleAccess["MZ"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 体积
|
|
|
+ /// </summary>
|
|
|
+ public System.Nullable<double> TJ
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.DoubleAccess["TJ"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.DoubleAccess["TJ"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 密度等级
|
|
|
+ /// </summary>
|
|
|
+ public string MDDJ
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["MDDJ"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["MDDJ"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 生效日期
|
|
|
+ /// </summary>
|
|
|
+ public System.Nullable<DateTime> EFFECT_DATE
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.DateAccess["EFFECT_DATE"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.DateAccess["EFFECT_DATE"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 失效日期
|
|
|
+ /// </summary>
|
|
|
+ public System.Nullable<DateTime> UNEFFECT_DATE
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.DateAccess["UNEFFECT_DATE"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.DateAccess["UNEFFECT_DATE"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// M
|
|
|
+ /// </summary>
|
|
|
+ public string M
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["M"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["M"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// N
|
|
|
+ /// </summary>
|
|
|
+ public string N
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["N"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["N"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 45+
|
|
|
+ /// </summary>
|
|
|
+ public string SW
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["SW"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["SW"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 100+
|
|
|
+ /// </summary>
|
|
|
+ public string YIB
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["YIB"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["YIB"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 300+
|
|
|
+ /// </summary>
|
|
|
+ public string SANB
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["SANB"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["SANB"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 500+
|
|
|
+ /// </summary>
|
|
|
+ public string WUB
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["WUB"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["WUB"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 700+
|
|
|
+ /// </summary>
|
|
|
+ public string QIB
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["QIB"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["QIB"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 1000+
|
|
|
+ /// </summary>
|
|
|
+ public string YIQ
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["YIQ"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["YIQ"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 2000+
|
|
|
+ /// </summary>
|
|
|
+ public string ERQ
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["ERQ"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["ERQ"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 3000+
|
|
|
+ /// </summary>
|
|
|
+ public string SANQ
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["SANQ"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["SANQ"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 5000+
|
|
|
+ /// </summary>
|
|
|
+ public string WUQ
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["WUQ"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["WUQ"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 备注
|
|
|
+ /// </summary>
|
|
|
+ public string REMARK
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["REMARK"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["REMARK"] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 创建人
|
|
|
+ /// </summary>
|
|
|
+ public string CREATE_USER
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["CREATE_USER"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["CREATE_USER"] = 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 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 string UPDATE_USER_NAME
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return this.TextAccess["UPDATE_USER_NAME"];
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ this.TextAccess["UPDATE_USER_NAME"] = 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 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 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 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;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ #endregion
|
|
|
+
|
|
|
+ #region Query Method
|
|
|
+ public BD_KY_GBJ SingleOrDefault()
|
|
|
+ {
|
|
|
+ return new EntityBuilder<BD_KY_GBJ>().ToEntityBySql(this.SQLSelect);
|
|
|
+ }
|
|
|
+
|
|
|
+ public BD_KY_GBJ SingleOrDefault(object ts)
|
|
|
+ {
|
|
|
+ return new EntityBuilder<BD_KY_GBJ>().ToEntityBySql(this.SQLSelect, ts);
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<BD_KY_GBJ> ToList()
|
|
|
+ {
|
|
|
+ return new EntityBuilder<BD_KY_GBJ>().ToListBySql(this.SQLSelect);
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<BD_KY_GBJ> ToList(object ts)
|
|
|
+ {
|
|
|
+ return new EntityBuilder<BD_KY_GBJ>().ToListBySql(this.SQLSelect, ts);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static BD_KY_GBJ SingleOrDefault(string sql)
|
|
|
+ {
|
|
|
+ return SingleOrDefault(sql, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static BD_KY_GBJ SingleOrDefault(string sql,object ts)
|
|
|
+ {
|
|
|
+ List<BD_KY_GBJ> list = ToListBySql(sql, ts);
|
|
|
+
|
|
|
+ if (list.Count == 0) return null;
|
|
|
+ else
|
|
|
+ {
|
|
|
+ return list[0];
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public static List<BD_KY_GBJ> ToListBySql(string sql)
|
|
|
+ {
|
|
|
+ return ToListBySql(sql, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static List<BD_KY_GBJ> ToListBySql(string sql, object ts)
|
|
|
+ {
|
|
|
+ return new EntityBuilder<BD_KY_GBJ>().ToListBySql(sql, ts);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static List<BD_KY_GBJ> ToList(DataTable data)
|
|
|
+ {
|
|
|
+ return new EntityBuilder<BD_KY_GBJ>().ToList(data);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ #endregion
|
|
|
+
|
|
|
+ public static TDAL<BD_KY_GBJ, BD_KY_GBJ_FIELD> DAL
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return new TDAL<BD_KY_GBJ, BD_KY_GBJ_FIELD>();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public static BD_KY_GBJ_FIELD Fields
|
|
|
+ {
|
|
|
+ get { return BD_KY_GBJ_FIELD.Instance; }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public static EntityBuilder<BD_KY_GBJ> EntityBuilder = new EntityBuilder<BD_KY_GBJ>();
|
|
|
+ }
|
|
|
+
|
|
|
+ internal class BD_KY_GBJ_COLUMN : BaseColumn
|
|
|
+ {
|
|
|
+ public static BD_KY_GBJ_COLUMN Instance;
|
|
|
+
|
|
|
+ static BD_KY_GBJ_COLUMN()
|
|
|
+ {
|
|
|
+ Instance = new BD_KY_GBJ_COLUMN();
|
|
|
+ }
|
|
|
+
|
|
|
+ private BD_KY_GBJ_COLUMN()
|
|
|
+ {
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "GUID", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "PRODUCT_NAME", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "HKGS", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "SFG", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "MDG", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "ZZG", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "HB_DATE", Type = "DATE" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "HC", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "HWLX", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "ZDKH", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "MZ", Type = "NUMBER" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "TJ", Type = "NUMBER" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "MDDJ", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "EFFECT_DATE", Type = "DATE" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "UNEFFECT_DATE", Type = "DATE" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "M", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "N", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "SW", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "YIB", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "SANB", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "WUB", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "QIB", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "YIQ", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "ERQ", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "SANQ", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "WUQ", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "REMARK", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "CREATE_USER", Type = "TEXT" ,NText=true });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "CREATE_USER_NAME", Type = "TEXT" ,NText=false });
|
|
|
+ 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_USER_NAME", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "UPDATE_DATE", Type = "DATE" ,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 = "NODE_CODE", Type = "TEXT" ,NText=false });
|
|
|
+ base.ListColumn.Add(new ColumnInfo() { Name = "NODE_NAME", 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 });
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public class BD_KY_GBJ_FIELD
|
|
|
+ {
|
|
|
+ private static BD_KY_GBJ_FIELD instance;
|
|
|
+
|
|
|
+ public static BD_KY_GBJ_FIELD Instance
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ if (instance == null)
|
|
|
+ {
|
|
|
+ instance = new BD_KY_GBJ_FIELD();
|
|
|
+ }
|
|
|
+
|
|
|
+ return instance;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public readonly string GUID = "GUID";
|
|
|
+ public readonly string PRODUCT_NAME = "PRODUCT_NAME";
|
|
|
+ public readonly string HKGS = "HKGS";
|
|
|
+ public readonly string SFG = "SFG";
|
|
|
+ public readonly string MDG = "MDG";
|
|
|
+ public readonly string ZZG = "ZZG";
|
|
|
+ public readonly string HB_DATE = "HB_DATE";
|
|
|
+ public readonly string HC = "HC";
|
|
|
+ public readonly string HWLX = "HWLX";
|
|
|
+ public readonly string ZDKH = "ZDKH";
|
|
|
+ public readonly string MZ = "MZ";
|
|
|
+ public readonly string TJ = "TJ";
|
|
|
+ public readonly string MDDJ = "MDDJ";
|
|
|
+ public readonly string EFFECT_DATE = "EFFECT_DATE";
|
|
|
+ public readonly string UNEFFECT_DATE = "UNEFFECT_DATE";
|
|
|
+ public readonly string M = "M";
|
|
|
+ public readonly string N = "N";
|
|
|
+ public readonly string SW = "SW";
|
|
|
+ public readonly string YIB = "YIB";
|
|
|
+ public readonly string SANB = "SANB";
|
|
|
+ public readonly string WUB = "WUB";
|
|
|
+ public readonly string QIB = "QIB";
|
|
|
+ public readonly string YIQ = "YIQ";
|
|
|
+ public readonly string ERQ = "ERQ";
|
|
|
+ public readonly string SANQ = "SANQ";
|
|
|
+ public readonly string WUQ = "WUQ";
|
|
|
+ public readonly string REMARK = "REMARK";
|
|
|
+ public readonly string CREATE_USER = "CREATE_USER";
|
|
|
+ public readonly string CREATE_USER_NAME = "CREATE_USER_NAME";
|
|
|
+ public readonly string CREATE_DATE = "CREATE_DATE";
|
|
|
+ public readonly string UPDATE_USER = "UPDATE_USER";
|
|
|
+ public readonly string UPDATE_USER_NAME = "UPDATE_USER_NAME";
|
|
|
+ public readonly string UPDATE_DATE = "UPDATE_DATE";
|
|
|
+ public readonly string COMPANY_CODE = "COMPANY_CODE";
|
|
|
+ public readonly string COMPANY_NAME = "COMPANY_NAME";
|
|
|
+ public readonly string NODE_CODE = "NODE_CODE";
|
|
|
+ public readonly string NODE_NAME = "NODE_NAME";
|
|
|
+ public readonly string GROUP_CODE = "GROUP_CODE";
|
|
|
+ public readonly string GROUP_NAME = "GROUP_NAME";
|
|
|
+
|
|
|
+ }
|
|
|
+}
|