@@ -981,7 +992,7 @@
@foreach (DataItemDetailEntity item in ViewBag.FlowType)
{
-
+
@item.F_ItemName @item.FlowCount
@@ -1599,15 +1610,59 @@
var category = $(this).attr("itemName");
$('#flowTypeList').find('li.active').removeClass('active');
$(this).parent('li').addClass("active");
- $.each(flowListJson,function(i, item) {
+ $.each(flowListJson, function (i, item) {
+ var collectClass = "fa-heart-o";
+ if (item.IsCollect == true) {
+ collectClass = "fa-heart";
+ }
if (category == "全部") {
- html += "
"+item.F_Name+" ";
+ html += "
" + item.F_Name + " ";
}else if (item.F_Category==category) {
- html += "
"+item.F_Name+" ";
+ html += "
" + item.F_Name + " ";
}
});
$("#flowList").html(html);
})
$("#flowTypeList").find(".itemName").eq(0).trigger("click");
+ //左侧-我的收藏
+ var flowListOfCollect = '@ViewBag.FlowListOfCollect';
+ flowListOfCollect = flowListOfCollect.replace(/"/g, "\"");
+ var flowListOfCollectJson = JSON.parse(flowListOfCollect);
+ $("#flowTypeListOfCollect").find(".itemName").bind("click", function() {
+ var html = "";
+ var category = $(this).attr("itemName");
+ $('#flowTypeListOfCollect').find('li.active').removeClass('active');
+ $(this).parent('li').addClass("active");
+ $.each(flowListOfCollectJson, function (i, item) {
+ var collectClass = "fa-heart";
+ if (category == "全部") {
+ html += "
" + item.F_Name + " ";
+ }else if (item.F_Category==category) {
+ html += "
" + item.F_Name + " ";
+ }
+ });
+ $("#flowListOfCollect").html(html);
+ })
+ $("#flowTypeListOfCollect").find(".itemName").eq(0).trigger("click");
+
+ //更新“左侧-我的收藏”左侧分类数量
+ var updateCollectCount = function (data) {
+ $.each($("#flowTypeListOfCollect").find(".itemName"), function (i, item) {
+ var category = $(item).attr("itemName");
+ if (category == "全部") {
+ $(item).find('.collectCount').html(data.length);
+ } else {
+ var count = 0;
+ $.each(data, function (j, jtem) {
+ if (jtem.F_Category == category) {
+ count++;
+ }
+ });
+ $(item).find('.collectCount').html(count);
+ }
+ });
+ };
+
+
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Base/SystemModule/DataItem/DataItemDetailEntity.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Base/SystemModule/DataItem/DataItemDetailEntity.cs
index 1137551e2..576dca49a 100644
--- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Base/SystemModule/DataItem/DataItemDetailEntity.cs
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Base/SystemModule/DataItem/DataItemDetailEntity.cs
@@ -142,6 +142,11 @@ namespace Learun.Application.Base.SystemModule
///
[NotMapped]
public int FlowCount { get; set; }
+ ///
+ /// 新增调用
+ ///
+ [NotMapped]
+ public int FlowCountOfCollect { get; set; }
public void Create()
{
this.F_ItemDetailId = Guid.NewGuid().ToString();
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/LR_Desktop/SSO_Drag_CollectManageMap.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/LR_Desktop/SSO_Drag_CollectManageMap.cs
new file mode 100644
index 000000000..b55ff8407
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/LR_Desktop/SSO_Drag_CollectManageMap.cs
@@ -0,0 +1,29 @@
+using Learun.Application.TwoDevelopment.LR_Desktop;
+using System.Data.Entity.ModelConfiguration;
+
+namespace Learun.Application.Mapping
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2021-06-02 16:12
+ /// 描 述:网上办事大厅拖拽版-可用应用收藏管理
+ ///
+ public class SSO_Drag_CollectManageMap : EntityTypeConfiguration
+ {
+ public SSO_Drag_CollectManageMap()
+ {
+ #region 表、主键
+ //表
+ this.ToTable("SSO_DRAG_COLLECTMANAGE");
+ //主键
+ this.HasKey(t => t.Id);
+ #endregion
+
+ #region 配置关系
+ #endregion
+ }
+ }
+}
+
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/DBModel/资产系统.PDM b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/DBModel/资产系统.PDM
index fc71cf1d6..8d9a30f01 100644
--- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/DBModel/资产系统.PDM
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/DBModel/资产系统.PDM
@@ -1,5 +1,5 @@
-
+
@@ -12256,9 +12256,9 @@ LABL 0 新宋体,8,N
1623119171
-1623119537
+1623119875
-1
-((-360307,105060), (-343953,116308))
+((-361447,105240), (-345093,116488))
0
12615680
16570034
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/SSO_Drag_CardSortManage/SSO_Drag_CardSortManageEntity.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/SSO_Drag_CardSortManage/SSO_Drag_CardSortManageEntity.cs
index ba8a007d7..c69e25ea4 100644
--- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/SSO_Drag_CardSortManage/SSO_Drag_CardSortManageEntity.cs
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/SSO_Drag_CardSortManage/SSO_Drag_CardSortManageEntity.cs
@@ -27,7 +27,7 @@ namespace Learun.Application.TwoDevelopment.LR_Desktop
[Column("USERID")]
public string UserId { get; set; }
///
- /// 模式编号:0办事大厅模式,1效率优先模式,2管理驾驶舱模式
+ /// 模式编号:one办事大厅模式,two效率优先模式,three管理驾驶舱模式
///
///
[Column("MODELCODE")]
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/SSO_Drag_CollectManage/SSO_Drag_CollectManageBLL.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/SSO_Drag_CollectManage/SSO_Drag_CollectManageBLL.cs
new file mode 100644
index 000000000..89667d44f
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/SSO_Drag_CollectManage/SSO_Drag_CollectManageBLL.cs
@@ -0,0 +1,171 @@
+using Learun.Util;
+using System;
+using System.Data;
+using System.Collections.Generic;
+
+namespace Learun.Application.TwoDevelopment.LR_Desktop
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2021-06-02 16:12
+ /// 描 述:网上办事大厅拖拽版-可用应用收藏管理
+ ///
+ public class SSO_Drag_CollectManageBLL : SSO_Drag_CollectManageIBLL
+ {
+ private SSO_Drag_CollectManageService sSO_Drag_CollectManageService = new SSO_Drag_CollectManageService();
+
+ #region 获取数据
+
+ ///
+ /// 获取列表数据
+ ///
+ /// 查询参数
+ ///
+ public IEnumerable GetList(string queryJson)
+ {
+ try
+ {
+ return sSO_Drag_CollectManageService.GetList(queryJson);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 获取列表分页数据
+ ///
+ /// 分页参数
+ /// 查询参数
+ ///
+ public IEnumerable GetPageList(Pagination pagination, string queryJson)
+ {
+ try
+ {
+ return sSO_Drag_CollectManageService.GetPageList(pagination, queryJson);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 获取实体数据
+ ///
+ /// 主键
+ ///
+ public SSO_Drag_CollectManageEntity GetEntity(string keyValue)
+ {
+ try
+ {
+ return sSO_Drag_CollectManageService.GetEntity(keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ public void DeleteEntity(string keyValue)
+ {
+ try
+ {
+ sSO_Drag_CollectManageService.DeleteEntity(keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ public void SaveEntity(string keyValue, SSO_Drag_CollectManageEntity entity)
+ {
+ try
+ {
+ sSO_Drag_CollectManageService.SaveEntity(keyValue, entity);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 收藏
+ ///
+ /// 主键
+ public void DoCollectFlow(string userId, string modelCode, string id, bool isCollect)
+ {
+ try
+ {
+ sSO_Drag_CollectManageService.DoCollectFlow(userId, modelCode, id, isCollect);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowBusinessException(ex);
+ }
+ }
+ }
+
+ #endregion
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/SSO_Drag_CollectManage/SSO_Drag_CollectManageEntity.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/SSO_Drag_CollectManage/SSO_Drag_CollectManageEntity.cs
new file mode 100644
index 000000000..2b00ddf84
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/SSO_Drag_CollectManage/SSO_Drag_CollectManageEntity.cs
@@ -0,0 +1,86 @@
+using Learun.Util;
+using System;
+using System.ComponentModel.DataAnnotations.Schema;
+namespace Learun.Application.TwoDevelopment.LR_Desktop
+
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2021-06-02 16:12
+ /// 描 述:网上办事大厅拖拽版-可用应用收藏管理
+ ///
+ public class SSO_Drag_CollectManageEntity
+ {
+ #region 实体成员
+ ///
+ /// 主键
+ ///
+ ///
+ [Column("ID")]
+ public string Id { get; set; }
+ ///
+ /// 用户
+ ///
+ ///
+ [Column("USERID")]
+ public string UserId { get; set; }
+ ///
+ /// 模式编号:one办事大厅模式,two效率优先模式,three管理驾驶舱模式
+ ///
+ ///
+ [Column("MODELCODE")]
+ public string ModelCode { get; set; }
+ ///
+ /// 可用应用Id
+ ///
+ ///
+ [Column("SCHEMEINFOID")]
+ public string SchemeInfoId { get; set; }
+ ///
+ /// 收藏时间
+ ///
+ ///
+ [Column("TIME")]
+ public DateTime? Time { get; set; }
+ #endregion
+
+ #region 扩展操作
+ ///
+ /// 新增调用
+ ///
+ public void Create()
+ {
+ this.Id = Guid.NewGuid().ToString();
+ }
+ ///
+ /// 编辑调用
+ ///
+ ///
+ public void Modify(string keyValue)
+ {
+ this.Id = keyValue;
+ }
+ #endregion
+ #region 扩展字段
+ ///
+ /// 流程设计分类编号
+ ///
+ [NotMapped]
+ public string F_Category { get; set; }
+ ///
+ /// 流程设计编号
+ ///
+ [NotMapped]
+ public string F_Code { get; set; }
+ ///
+ /// 流程设计名称
+ ///
+ [NotMapped]
+ public string F_Name { get; set; }
+
+ #endregion
+ }
+}
+
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/SSO_Drag_CollectManage/SSO_Drag_CollectManageIBLL.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/SSO_Drag_CollectManage/SSO_Drag_CollectManageIBLL.cs
new file mode 100644
index 000000000..ddb640ae0
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/SSO_Drag_CollectManage/SSO_Drag_CollectManageIBLL.cs
@@ -0,0 +1,61 @@
+using Learun.Util;
+using System.Data;
+using System.Collections.Generic;
+
+namespace Learun.Application.TwoDevelopment.LR_Desktop
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2021-06-02 16:12
+ /// 描 述:网上办事大厅拖拽版-可用应用收藏管理
+ ///
+ public interface SSO_Drag_CollectManageIBLL
+ {
+ #region 获取数据
+
+ ///
+ /// 获取列表数据
+ ///
+ /// 查询参数
+ ///
+ IEnumerable GetList(string queryJson);
+ ///
+ /// 获取列表分页数据
+ ///
+ /// 分页参数
+ /// 查询参数
+ ///
+ IEnumerable GetPageList(Pagination pagination, string queryJson);
+ ///
+ /// 获取实体数据
+ ///
+ /// 主键
+ ///
+ SSO_Drag_CollectManageEntity GetEntity(string keyValue);
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ void DeleteEntity(string keyValue);
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ void SaveEntity(string keyValue, SSO_Drag_CollectManageEntity entity);
+
+ ///
+ /// 收藏
+ ///
+ /// 主键
+ void DoCollectFlow(string userId, string modelCode, string id, bool isCollect);
+ #endregion
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/SSO_Drag_CollectManage/SSO_Drag_CollectManageService.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/SSO_Drag_CollectManage/SSO_Drag_CollectManageService.cs
new file mode 100644
index 000000000..e99ac0429
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/LR_Desktop/SSO_Drag_CollectManage/SSO_Drag_CollectManageService.cs
@@ -0,0 +1,242 @@
+using Dapper;
+using Learun.DataBase.Repository;
+using Learun.Util;
+using System;
+using System.Collections.Generic;
+using System.Data;
+using System.Text;
+
+namespace Learun.Application.TwoDevelopment.LR_Desktop
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2021-06-02 16:12
+ /// 描 述:网上办事大厅拖拽版-可用应用收藏管理
+ ///
+ public class SSO_Drag_CollectManageService : RepositoryFactory
+ {
+ #region 构造函数和属性
+
+ private string fieldSql;
+ ///
+ /// 构造方法
+ ///
+ public SSO_Drag_CollectManageService()
+ {
+ fieldSql = @"
+ t.Id,
+ t.UserId,
+ t.ModelCode,
+ t.SchemeInfoId,
+ t.Time
+ ";
+ }
+ #endregion
+
+ #region 获取数据
+
+ ///
+ /// 获取列表数据
+ ///
+ /// 条件参数
+ ///
+ public IEnumerable GetList(string queryJson)
+ {
+ try
+ {
+ //参考写法
+ var queryParam = queryJson.ToJObject();
+ // 虚拟参数
+ var dp = new DynamicParameters(new { });
+ var strSql = new StringBuilder();
+ strSql.Append("SELECT t.*,s.F_Category,s.F_Code,s.F_Name ");
+ strSql.Append(" FROM SSO_Drag_CollectManage t ");
+ strSql.Append(" left join LR_NWF_SchemeInfo s on t.SchemeInfoId=s.F_Id ");
+ strSql.Append(" where 1=1 ");
+ if (!queryParam["UserId"].IsEmpty())
+ {
+ dp.Add("UserId", queryParam["UserId"].ToString(), DbType.String);
+ strSql.Append(" AND t.UserId = @UserId ");
+ }
+ if (!queryParam["ModelCode"].IsEmpty())
+ {
+ dp.Add("ModelCode", queryParam["ModelCode"].ToString(), DbType.String);
+ strSql.Append(" AND t.ModelCode = @ModelCode ");
+ }
+ return this.BaseRepository().FindList(strSql.ToString(), dp);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowServiceException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 获取列表分页数据
+ ///
+ /// 分页参数
+ /// 条件参数
+ ///
+ public IEnumerable GetPageList(Pagination pagination, string queryJson)
+ {
+ try
+ {
+ var strSql = new StringBuilder();
+ strSql.Append("SELECT t.* ");
+ strSql.Append(" FROM SSO_Drag_CollectManage t ");
+ return this.BaseRepository().FindList(strSql.ToString(), pagination);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowServiceException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 获取实体数据
+ ///
+ /// 主键
+ ///
+ public SSO_Drag_CollectManageEntity GetEntity(string keyValue)
+ {
+ try
+ {
+ return this.BaseRepository().FindEntity(keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowServiceException(ex);
+ }
+ }
+ }
+
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ public void DeleteEntity(string keyValue)
+ {
+ try
+ {
+ this.BaseRepository().Delete(t => t.Id == keyValue);
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowServiceException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 保存实体数据(新增、修改)
+ /// 主键
+ /// 实体
+ ///
+ public void SaveEntity(string keyValue, SSO_Drag_CollectManageEntity entity)
+ {
+ try
+ {
+ if (!string.IsNullOrEmpty(keyValue))
+ {
+ entity.Modify(keyValue);
+ this.BaseRepository().Update(entity);
+ }
+ else
+ {
+ entity.Create();
+ this.BaseRepository().Insert(entity);
+ }
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowServiceException(ex);
+ }
+ }
+ }
+
+ ///
+ /// 收藏
+ ///
+ /// 主键
+ public void DoCollectFlow(string userId, string modelCode, string id, bool isCollect)
+ {
+ try
+ {
+ if (isCollect)
+ {
+ //收藏
+ var model = this.BaseRepository().FindEntity(x => x.UserId == userId && x.ModelCode == modelCode && x.SchemeInfoId == id);
+ if (model == null)
+ {
+ var entity = new SSO_Drag_CollectManageEntity()
+ {
+ UserId = userId,
+ ModelCode = modelCode,
+ SchemeInfoId = id,
+ Time = DateTime.Now
+ };
+ entity.Create();
+ this.BaseRepository().Insert(entity);
+ }
+ }
+ else
+ {
+ //取消收藏
+ this.BaseRepository().Delete(x => x.UserId == userId && x.ModelCode == modelCode && x.SchemeInfoId == id);
+ }
+ }
+ catch (Exception ex)
+ {
+ if (ex is ExceptionEx)
+ {
+ throw;
+ }
+ else
+ {
+ throw ExceptionEx.ThrowServiceException(ex);
+ }
+ }
+ }
+
+ #endregion
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/WfProcess/WfProcessInstanceEntity.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/WfProcess/WfProcessInstanceEntity.cs
index 881d03bcf..899991231 100644
--- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/WfProcess/WfProcessInstanceEntity.cs
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.WorkFlow/WfProcess/WfProcessInstanceEntity.cs
@@ -187,6 +187,11 @@ namespace Learun.Application.WorkFlow
///
[NotMapped]
public string F_Kind { get; set; }
+ ///
+ /// 是否收藏【网上办事大厅拖拽版】
+ ///
+ [NotMapped]
+ public bool IsCollect { get; set; }
#endregion
}