using System; using System.Collections; using BP.DA; using BP.En; namespace BP.Sys { /// /// 附件 /// public class FrmAttachmentAttr : EntityMyPKAttr { /// /// Name /// public const string Name = "Name"; /// /// 主表 /// public const string FK_MapData = "FK_MapData"; /// /// 运行模式 /// public const string AthRunModel = "AthRunModel"; /// /// 节点ID /// public const string FK_Node = "FK_Node"; /// /// 高度 /// public const string H = "H"; /// /// 要求上传的格式 /// public const string Exts = "Exts"; /// /// 附件编号 /// public const string NoOfObj = "NoOfObj"; /// /// 是否可以上传 /// public const string IsUpload = "IsUpload"; /// /// 是否是合流汇总 /// public const string IsHeLiuHuiZong = "IsHeLiuHuiZong"; /// /// 是否汇总到合流节点上去? /// public const string IsToHeLiuHZ = "IsToHeLiuHZ"; /// /// 是否增加 /// public const string IsNote = "IsNote"; /// /// 是否启用扩展列 /// public const string IsExpCol = "IsExpCol"; /// /// 是否显示标题列 /// public const string IsShowTitle = "IsShowTitle"; /// /// 是否可以下载 /// public const string IsDownload = "IsDownload"; /// /// 是否可以排序 /// public const string IsOrder11 = "IsOrder"; /// /// 数据存储方式 /// public const string AthSaveWay = "AthSaveWay"; /// /// 单附件模板使用规则 /// public const string AthSingleRole = "AthSingleRole"; /// /// 单附件编辑模式 /// public const string AthEditModel = "AthEditModel"; /// /// 是否排序? /// public const string IsIdx = "IsIdx"; /// /// 是否要转换成html,方便在线浏览. /// public const string IsTurn2Html = "IsTurn2Html"; /// /// 类别 /// public const string Sort = "Sort"; /// /// 上传类型 /// public const string UploadType = "UploadType"; /// /// GroupID /// public const string GroupID = "GroupID"; /// RowIdx /// public const string RowIdx = "RowIdx"; /// /// /// 自动控制大小 /// public const string IsAutoSize = "IsAutoSize"; /// /// GUID /// public const string GUID = "GUID"; /// /// 数据控制方式(对父子流程有效果) /// public const string CtrlWay = "CtrlWay"; /// /// 上传方式(对父子流程有效果) /// public const string AthUploadWay = "AthUploadWay"; /// /// 文件展现方式 /// public const string FileShowWay = "FileShowWay"; /// /// 上传方式 /// 0,批量上传。 /// 1,单个上传。 /// public const string UploadCtrl = "UploadCtrl"; /// /// 上传校验 /// 0=不校验. /// 1=不能为空. /// 2=每个类别下不能为空. /// public const string UploadFileNumCheck = "UploadFileNumCheck"; /// /// 上传最小数量 /// public const string NumOfUpload = "NumOfUpload"; /// /// 上传最大数量 /// public const string TopNumOfUpload = "TopNumOfUpload"; /// /// 附件最大限制 /// public const string FileMaxSize = "FileMaxSize"; /// /// 是否可见? /// public const string IsVisable = "IsVisable"; /// /// 附件类型 0 普通附件 1 图片附件 /// public const string FileType = "FileType"; /// /// 移动端图片附件上传的方式 /// public const string PicUploadType = "PicUploadType"; /// /// 是否启用模板? /// public const string IsEnableTemplate = "IsEnableTemplate"; /// /// 附件删除方式 /// public const string DeleteWay = "DeleteWay"; #region 数据引用. /// /// 数据引用 /// public const string DataRefNoOfObj = "DataRefNoOfObj"; /// /// 阅读规则 /// public const string ReadRole = "ReadRole"; #endregion 数据引用. #region 快捷键. /// /// 是否启用快捷键 /// public const string FastKeyIsEnable = "FastKeyIsEnable"; /// /// 快捷键生成规则 /// public const string FastKeyGenerRole = "FastKeyGenerRole"; #endregion } /// /// 附件 /// public class FrmAttachment : EntityMyPK { #region 参数属性. /// /// 是否可见? /// public bool IsVisable { get { return this.GetValBooleanByKey(FrmAttachmentAttr.IsVisable, true); } set { this.SetValByKey(FrmAttachmentAttr.IsVisable, value); } } public int DeleteWay { get { return this.GetValIntByKey(FrmAttachmentAttr.DeleteWay, 0); } set { this.SetValByKey(FrmAttachmentAttr.DeleteWay, value); } } /// /// 使用上传附件的 - 控件类型 /// 0=批量. /// 1=单个。 /// public int UploadCtrl { get { return this.GetParaInt(FrmAttachmentAttr.UploadCtrl); } set { this.SetPara(FrmAttachmentAttr.UploadCtrl, value); } } /// /// 最低上传数量 /// public int NumOfUpload { get { return this.GetValIntByKey(FrmAttachmentAttr.NumOfUpload); } set { this.SetValByKey(FrmAttachmentAttr.NumOfUpload, value); } } /// /// 最大上传数量 /// public int TopNumOfUpload { get { return this.GetValIntByKey(FrmAttachmentAttr.TopNumOfUpload); } set { this.SetValByKey(FrmAttachmentAttr.TopNumOfUpload, value); } } /// /// 附件最大限制 /// public int FileMaxSize { get { return this.GetValIntByKey(FrmAttachmentAttr.FileMaxSize); } set { this.SetValByKey(FrmAttachmentAttr.FileMaxSize, value); } } /// /// 上传校验 /// 0=不校验. /// 1=不能为空. /// 2=每个类别下不能为空. /// public UploadFileNumCheck UploadFileNumCheck { get { return (UploadFileNumCheck)this.GetValIntByKey(FrmAttachmentAttr.UploadFileNumCheck); } set { this.SetPara(FrmAttachmentAttr.UploadFileNumCheck, (int)value); } } /// /// 保存方式 /// 0 =文件方式保存。 /// 1 = 保存到数据库. /// 2 = ftp服务器. /// public AthSaveWay AthSaveWay { get { return (AthSaveWay)this.GetValIntByKey(FrmAttachmentAttr.AthSaveWay); } set { this.SetPara(FrmAttachmentAttr.AthSaveWay, (int)value); } } #endregion 参数属性. #region 属性 /// /// 节点编号 /// public int FK_Node { get { return this.GetValIntByKey(FrmAttachmentAttr.FK_Node); } set { this.SetValByKey(FrmAttachmentAttr.FK_Node, value); } } /// /// 运行模式? /// public AthRunModel AthRunModel { get { return (AthRunModel)this.GetValIntByKey(FrmAttachmentAttr.AthRunModel); } set { this.SetValByKey(FrmAttachmentAttr.AthRunModel, (int)value); } } /// /// 上传类型(单个的,多个,指定的) /// public AttachmentUploadType UploadType { get { return (AttachmentUploadType)this.GetValIntByKey(FrmAttachmentAttr.UploadType); } set { this.SetValByKey(FrmAttachmentAttr.UploadType, (int)value); } } /// /// 是否可以上传 /// public bool IsUpload { get { return this.GetValBooleanByKey(FrmAttachmentAttr.IsUpload); } set { this.SetValByKey(FrmAttachmentAttr.IsUpload, value); } } /// /// 是否可以下载 /// public bool IsDownload { get { return this.GetValBooleanByKey(FrmAttachmentAttr.IsDownload); } set { this.SetValByKey(FrmAttachmentAttr.IsDownload, value); } } /// /// 附件删除方式 /// public AthDeleteWay HisDeleteWay { get { return (AthDeleteWay)this.GetValIntByKey(FrmAttachmentAttr.DeleteWay); } set { this.SetValByKey(FrmAttachmentAttr.DeleteWay, (int)value); } } /// /// 自动控制大小 /// public bool IsAutoSize { get { return this.GetValBooleanByKey(FrmAttachmentAttr.IsAutoSize); } set { this.SetValByKey(FrmAttachmentAttr.IsAutoSize, value); } } /// /// IsShowTitle /// public bool IsShowTitle { get { return this.GetValBooleanByKey(FrmAttachmentAttr.IsShowTitle); } set { this.SetValByKey(FrmAttachmentAttr.IsShowTitle, value); } } /// /// 备注列 /// public bool IsNote { get { return this.GetValBooleanByKey(FrmAttachmentAttr.IsNote); } set { this.SetValByKey(FrmAttachmentAttr.IsNote, value); } } /// /// 是否启用扩张列 /// public bool IsExpCol { get { return this.GetValBooleanByKey(FrmAttachmentAttr.IsExpCol); } set { this.SetValByKey(FrmAttachmentAttr.IsExpCol, value); } } /// /// 附件名称 /// public string Name { get { string str = this.GetValStringByKey(FrmAttachmentAttr.Name); if (DataType.IsNullOrEmpty(str) == true) str = "未命名"; return str; } set { this.SetValByKey(FrmAttachmentAttr.Name, value); } } public void setName(string val) { this.SetValByKey(FrmAttachmentAttr.Name, val); } /// /// 类别 /// public string Sort { get { return this.GetValStringByKey(FrmAttachmentAttr.Sort); } set { this.SetValByKey(FrmAttachmentAttr.Sort, value); } } /// /// 要求的格式 /// public string Exts { get { return this.GetValStringByKey(FrmAttachmentAttr.Exts); } set { this.SetValByKey(FrmAttachmentAttr.Exts, value); } } public int FileType { get { return this.GetValIntByKey(FrmAttachmentAttr.FileType); } } /// /// 保存到 /// public string SaveTo { get { if (this.AthSaveWay == BP.Sys.AthSaveWay.IISServer) { return BP.Difference.SystemConfig.PathOfDataUser + @"/UploadFile/" + this.FK_MapData + "/"; } if (this.AthSaveWay == BP.Sys.AthSaveWay.FTPServer) { return @"//" + this.FK_MapData + "//"; } return this.FK_MapData; } } /// /// 数据关联组件ID /// public string DataRefNoOfObj { get { string str = this.GetValStringByKey(FrmAttachmentAttr.DataRefNoOfObj); if (str == "") str = this.NoOfObj; return str; } set { this.SetValByKey(FrmAttachmentAttr.DataRefNoOfObj, value); } } /// /// 附件编号 /// public string NoOfObj { get { return this.GetValStringByKey(FrmAttachmentAttr.NoOfObj); } set { this.SetValByKey(FrmAttachmentAttr.NoOfObj, value); } } /// /// H /// public float H { get { return this.GetValFloatByKey(FrmAttachmentAttr.H); } set { this.SetValByKey(FrmAttachmentAttr.H, value); } } public int GroupID { get { return this.GetValIntByKey(FrmAttachmentAttr.GroupID); } set { this.SetValByKey(FrmAttachmentAttr.GroupID, value); } } /// /// 阅读规则:@0=不控制@1=未阅读阻止发送@2=未阅读做记录 /// public int ReadRole { get { return this.GetValIntByKey(FrmAttachmentAttr.ReadRole); } set { this.SetValByKey(FrmAttachmentAttr.ReadRole, value); } } public int RowIdx { get { return this.GetValIntByKey(FrmAttachmentAttr.RowIdx); } set { this.SetValByKey(FrmAttachmentAttr.RowIdx, value); } } /// /// 数据控制方式 /// public AthCtrlWay HisCtrlWay { get { return (AthCtrlWay)this.GetValIntByKey(FrmAttachmentAttr.CtrlWay); } set { this.SetValByKey(FrmAttachmentAttr.CtrlWay, (int)value); } } /// /// 是否是合流汇总多附件? /// public bool IsHeLiuHuiZong { get { return this.GetParaBoolen(FrmAttachmentAttr.IsHeLiuHuiZong); } set { this.SetPara(FrmAttachmentAttr.IsHeLiuHuiZong, value); } } /// /// 该附件是否汇总到合流节点上去? /// public bool IsToHeLiuHZ { get { return this.GetParaBoolen(FrmAttachmentAttr.IsToHeLiuHZ); } set { this.SetPara(FrmAttachmentAttr.IsToHeLiuHZ, value); } } /// /// 文件展现方式 /// public FileShowWay FileShowWay { get { return (FileShowWay)this.GetParaInt(FrmAttachmentAttr.FileShowWay); } set { this.SetPara(FrmAttachmentAttr.FileShowWay, (int)value); } } /// /// 上传方式(对于父子流程有效) /// public AthUploadWay AthUploadWay { get { return (AthUploadWay)this.GetValIntByKey(FrmAttachmentAttr.AthUploadWay); } set { this.SetValByKey(FrmAttachmentAttr.AthUploadWay, (int)value); } } /// /// FK_MapData /// public string FK_MapData { get { return this.GetValStrByKey(FrmAttachmentAttr.FK_MapData); } } public void setFK_MapData(string val) { this.SetValByKey(FrmAttachmentAttr.FK_MapData, val); } #endregion #region 快捷键 /// /// 是否启用快捷键 /// public bool FastKeyIsEnable { get { return this.GetParaBoolen(FrmAttachmentAttr.FastKeyIsEnable); } set { this.SetPara(FrmAttachmentAttr.FastKeyIsEnable, value); } } /// /// 启用规则 /// public string FastKeyGenerRole { get { return this.GetParaString(FrmAttachmentAttr.FastKeyGenerRole); } set { this.SetPara(FrmAttachmentAttr.FastKeyGenerRole, value); } } #endregion 快捷键 #region 构造方法 /// /// 附件 /// public FrmAttachment() { } /// /// 附件 /// /// public FrmAttachment(string mypk) { this.setMyPK(mypk); this.Retrieve(); } /// /// EnMap /// public override Map EnMap { get { if (this._enMap != null) return this._enMap; Map map = new Map("Sys_FrmAttachment", "附件"); map.IndexField = FrmAttachmentAttr.FK_MapData; map.AddMyPK(); map.AddTBString(FrmAttachmentAttr.FK_MapData, null, "表单ID", true, false, 1, 100, 20); map.AddTBString(FrmAttachmentAttr.NoOfObj, null, "附件编号", true, false, 0, 50, 20); map.AddTBInt(FrmAttachmentAttr.FK_Node, 0, "节点控制(对sln有效)", false, false); //for渔业厅增加. map.AddTBInt(FrmAttachmentAttr.AthRunModel, 0, "运行模式", false, false); map.AddTBInt(FrmAttachmentAttr.AthSaveWay, 0, "保存方式", false, false); map.AddTBString(FrmAttachmentAttr.Name, null, "名称", true, false, 0, 50, 20); map.AddTBString(FrmAttachmentAttr.Exts, null, "要求上传的格式", true, false, 0, 200, 20); map.AddTBInt(FrmAttachmentAttr.NumOfUpload, 0, "最小上传数量", true, false); map.AddTBInt(FrmAttachmentAttr.TopNumOfUpload, 99, "最大上传数量", true, false); map.AddTBInt(FrmAttachmentAttr.FileMaxSize, 10240, "附件最大限制(KB)", true, false); map.AddTBInt(FrmAttachmentAttr.UploadFileNumCheck, 0, "上传校验方式", true, false); map.AddTBString(FrmAttachmentAttr.Sort, null, "类别(可为空)", true, false, 0, 500, 20); map.AddTBFloat(FrmAttachmentAttr.H, 150, "H", false, false); map.AddBoolean(FrmAttachmentAttr.IsUpload, true, "是否可以上传", false, false); map.AddBoolean(FrmAttachmentAttr.IsVisable, true, "是否可见", false, false); // map.AddTBInt(FrmAttachmentAttr.IsDelete, 1, "附件删除规则(0=不能删除1=删除所有2=只能删除自己上传的)", false, false); map.AddTBInt(FrmAttachmentAttr.FileType, 0, "附件类型", false, false); map.AddTBInt(FrmAttachmentAttr.ReadRole, 0, "阅读规则", true, true); map.AddTBInt(FrmAttachmentAttr.PicUploadType, 0, "图片附件上传方式", true, true); //hzm新增列 map.AddTBInt(FrmAttachmentAttr.DeleteWay, 1, "附件删除规则(0=不能删除1=删除所有2=只能删除自己上传的", false, false); map.AddBoolean(FrmAttachmentAttr.IsDownload, true, "是否可以下载", false, false); map.AddBoolean(FrmAttachmentAttr.IsAutoSize, true, "自动控制大小", false, false); map.AddBoolean(FrmAttachmentAttr.IsNote, true, "是否增加备注", false, false); map.AddBoolean(FrmAttachmentAttr.IsExpCol, false, "是否启用扩展列", false, false); map.AddBoolean(FrmAttachmentAttr.IsShowTitle, true, "是否显示标题列", false, false); map.AddTBInt(FrmAttachmentAttr.UploadType, 0, "上传类型0单个1多个2指定", false, false); map.AddTBInt(FrmAttachmentAttr.IsIdx, 0, "是否排序", false, false); // map.AddBoolean(FrmAttachmentAttr.IsIdx, false, "是否排序?", true, true); #region 流程属性. //对于父子流程有效. map.AddTBInt(FrmAttachmentAttr.CtrlWay, 4, "控制呈现控制方式0=PK,1=FID,2=ParentID", false, false); map.AddTBInt(FrmAttachmentAttr.AthUploadWay, 0, "控制上传控制方式0=继承模式,1=协作模式.", false, false); map.AddTBInt(FrmAttachmentAttr.ReadRole, 0, "阅读规则", true, true); //数据引用,如果为空就引用当前的. map.AddTBString(FrmAttachmentAttr.DataRefNoOfObj, null, "数据引用组件ID", true, false, 0, 150, 20, true, null); #endregion 流程属性. //参数属性. map.AddTBAtParas(3000); // map.AddTBInt(FrmAttachmentAttr.RowIdx, 0, "RowIdx", false, false); map.AddTBInt(FrmAttachmentAttr.GroupID, 0, "GroupID", false, false); map.AddTBString(FrmAttachmentAttr.GUID, null, "GUID", true, false, 0, 128, 20); map.AddTBInt(FrmAttachmentAttr.IsEnableTemplate, 0, "是否启用模板下载?", false, false); this._enMap = map; return this._enMap; } } #endregion public bool IsUse = false; protected override bool beforeUpdateInsertAction() { if (this.FK_Node == 0) { //适应设计器新的规则 by dgq if (!DataType.IsNullOrEmpty(this.NoOfObj) && this.NoOfObj.Contains(this.FK_MapData)) this.setMyPK(this.NoOfObj); else this.setMyPK(this.FK_MapData + "_" + this.NoOfObj); } else this.setMyPK(this.FK_MapData + "_" + this.NoOfObj + "_" + this.FK_Node); return base.beforeUpdateInsertAction(); } protected override bool beforeInsert() { //在属性实体集合插入前,clear父实体的缓存. BP.Sys.Base.Glo.ClearMapDataAutoNum(this.FK_MapData); if (this.FK_Node == 0) this.setMyPK(this.FK_MapData + "_" + this.NoOfObj); else this.setMyPK(this.FK_MapData + "_" + this.NoOfObj + "_" + this.FK_Node); //对于流程类的多附件,默认按照WorkID控制. add 2017.08.03 by zhoupeng. if (this.FK_Node != 0 && this.HisCtrlWay == AthCtrlWay.PK) this.HisCtrlWay = AthCtrlWay.WorkID; return base.beforeInsert(); } /// /// 插入之后 /// protected override void afterInsert() { GroupField gf = new GroupField(); if (this.FK_Node == 0 && gf.IsExit(GroupFieldAttr.CtrlID, this.MyPK) == false) { if (this.GetParaBoolen("IsFieldAth") == true) gf.SetPara("IsFieldAth", 1); gf.FrmID = this.FK_MapData; gf.CtrlID = this.MyPK; gf.CtrlType = "Ath"; gf.Lab = this.Name; gf.Idx = 0; gf.Insert(); //插入. } base.afterInsert(); } /// /// 删除之后. /// protected override void afterDelete() { GroupField gf = new GroupField(); gf.Delete(GroupFieldAttr.CtrlID, this.MyPK); base.afterDelete(); } } /// /// 附件s /// public class FrmAttachments : EntitiesMyPK { #region 构造 /// /// 附件s /// public FrmAttachments() { } /// /// 附件s /// /// s public FrmAttachments(string fk_mapdata) { this.Retrieve(FrmAttachmentAttr.FK_MapData, fk_mapdata, FrmAttachmentAttr.FK_Node, 0); } /// /// 得到它的 Entity /// public override Entity GetNewEntity { get { return new FrmAttachment(); } } #endregion #region 为了适应自动翻译成java的需要,把实体转换成List. /// /// 转化成 java list,C#不能调用. /// /// List public System.Collections.Generic.IList ToJavaList() { return (System.Collections.Generic.IList)this; } /// /// 转化成list /// /// List public System.Collections.Generic.List Tolist() { System.Collections.Generic.List list = new System.Collections.Generic.List(); for (int i = 0; i < this.Count; i++) { list.Add((FrmAttachment)this[i]); } return list; } #endregion 为了适应自动翻译成java的需要,把实体转换成List. } }