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.

253 lines
6.4 KiB
C#

9 months ago
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using BP.En;
namespace BP.Sys
{
/// <summary>
/// 属性
/// </summary>
public class GEEntityExcelFrmAttr
{
/// <summary>
/// 文件路径
/// </summary>
public const string FilePath = "FilePath";
/// <summary>
/// 记录时间
/// </summary>
public const string RDT = "RDT";
/// <summary>
/// 最后修改人
/// </summary>
public const string LastEditer = "LastEditer";
}
/// <summary>
/// excel表单实体
/// </summary>
public class GEEntityExcelFrm : EntityOID
{
#region 属性。
/// <summary>
/// 最后修改人
/// </summary>
public string LastEditer
{
get
{
return this.GetValStringByKey(GEEntityExcelFrmAttr.LastEditer);
}
set
{
this.SetValByKey(GEEntityExcelFrmAttr.LastEditer, value);
}
}
/// <summary>
/// 记录时间
/// </summary>
public string RDT
{
get
{
return this.GetValStringByKey(GEEntityExcelFrmAttr.RDT);
}
set
{
this.SetValByKey(GEEntityExcelFrmAttr.RDT, value);
}
}
/// <summary>
/// 文件路径
/// </summary>
public string FilePath
{
get
{
return this.GetValStringByKey(GEEntityExcelFrmAttr.FilePath);
}
set
{
this.SetValByKey(GEEntityExcelFrmAttr.FilePath, value);
}
}
#endregion 属性。
#region 构造函数
public override string PK
{
get
{
return "OID";
}
}
public override string PKField
{
get
{
return "OID";
}
}
public override string ToString()
{
return this.FrmID;
}
public override string ClassID
{
get
{
return this.FrmID;
}
}
/// <summary>
/// 主键
/// </summary>
public string FrmID = null;
/// <summary>
/// 通用实体
/// </summary>
public GEEntityExcelFrm()
{
}
/// <summary>
/// 通用实体
/// </summary>
/// <param name="nodeid">节点ID</param>
public GEEntityExcelFrm(string fk_mapdata)
{
this.FrmID=fk_mapdata;
}
/// <summary>
/// 通用实体
/// </summary>
/// <param name="nodeid">节点ID</param>
/// <param name="_oid">OID</param>
public GEEntityExcelFrm(string fk_mapdata, int oid)
{
this.FrmID= fk_mapdata;
this.OID = oid;
int i =this.RetrieveFromDBSources();
}
#endregion
#region Map
/// <summary>
/// 重写基类方法=
/// </summary>
public override Map EnMap
{
get
{
if (this._enMap != null)
return this._enMap;
if (this.FrmID == null)
throw new Exception("没有给" + this.FrmID + "值您不能获取它的Map。");
this._enMap = BP.Sys.MapData.GenerHisMap(this.FrmID);
return this._enMap;
}
}
/// <summary>
/// GEEntitys
/// </summary>
public override Entities GetNewEntities
{
get
{
if (this.FrmID == null)
return new GEEntityExcelFrms();
return new GEEntityExcelFrms(this.FrmID);
}
}
#endregion
#region 其他属性.
private ArrayList _Dtls = null;
public ArrayList Dtls
{
get
{
if (_Dtls == null)
_Dtls = new ArrayList();
return _Dtls;
}
}
#endregion 其他属性.
}
/// <summary>
/// excel表单实体s
/// </summary>
public class GEEntityExcelFrms : EntitiesOID
{
#region 重载基类方法
public override string ToString()
{
return this.FrmID;
}
/// <summary>
/// 主键
/// </summary>
public string FrmID = null;
#endregion
#region 方法
/// <summary>
/// 得到它的 Entity
/// </summary>
public override Entity GetNewEntity
{
get
{
//if (this.FrmID == null)
// throw new Exception("@没有能 FK_MapData 给值。");
if (this.FrmID == null)
return new GEEntity();
return new GEEntity(this.FrmID);
}
}
/// <summary>
/// 通用实体ID
/// </summary>
public GEEntityExcelFrms()
{
}
/// <summary>
/// 通用实体ID
/// </summary>
/// <param name="fk_mapdtl"></param>
public GEEntityExcelFrms(string fk_mapdata)
{
this.FrmID= fk_mapdata;
}
#endregion
#region 为了适应自动翻译成java的需要,把实体转换成List.
/// <summary>
/// 转化成 java list,C#不能调用.
/// </summary>
/// <returns>List</returns>
public System.Collections.Generic.IList<GEEntityExcelFrm> ToJavaList()
{
return (System.Collections.Generic.IList<GEEntityExcelFrm>)this;
}
/// <summary>
/// 转化成list
/// </summary>
/// <returns>List</returns>
public System.Collections.Generic.List<GEEntityExcelFrm> Tolist()
{
System.Collections.Generic.List<GEEntityExcelFrm> list = new System.Collections.Generic.List<GEEntityExcelFrm>();
for (int i = 0; i < this.Count; i++)
{
list.Add((GEEntityExcelFrm)this[i]);
}
return list;
}
#endregion 为了适应自动翻译成java的需要,把实体转换成List.
}
}