工具类代码上传

This commit is contained in:
lihongyu 2023-05-06 16:41:58 +08:00
parent 66178adde6
commit 4a2cb8d82d
301 changed files with 42160 additions and 397 deletions

7
SynUser/.classpath Normal file
View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/aws"/>
<classpathentry kind="output" path="bin"/>
</classpath>

17
SynUser/.project Normal file
View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>SynUser</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

View File

@ -0,0 +1,12 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.8

View File

@ -0,0 +1,33 @@
package com.yili.org;
import java.text.SimpleDateFormat;
import java.util.Date;
import com.actionsoft.bpms.bpmn.engine.model.run.delegate.ProcessInstance;
import com.actionsoft.bpms.bpmn.engine.model.run.delegate.TaskInstance;
import com.actionsoft.bpms.server.UserContext;
import com.actionsoft.bpms.server.bind.annotation.Controller;
import com.actionsoft.bpms.server.bind.annotation.Mapping;
import com.actionsoft.sdk.local.SDK;
import com.alibaba.fastjson.JSONObject;
/*
* 新建流程
*/
@Controller
public class CreateProcessController {
@Mapping("com.awspaas.user.apps.xitongfankui.createProcess")
public JSONObject CheckUser(String sid,String processDefId) {
JSONObject result = new JSONObject();
UserContext uc = UserContext.fromSessionId(sid);
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
ProcessInstance processInst = SDK.getProcessAPI().createProcessInstance(processDefId, uc.getUID(), "流程管理平台问题反馈"+"-"+uc.getUserName()+"-"+df.format(new Date()));
TaskInstance taskInst = SDK.getProcessAPI().start(processInst).fetchActiveTasks().get(0);
String portalUrl = SDK.getPortalAPI().getPortalUrl();
String url = portalUrl + "/r/w?sid=" + uc.getSessionId()
+ "&cmd=CLIENT_BPM_FORM_MAIN_PAGE_OPEN&processInstId=" + processInst.getId() + "&taskInstId="
+ taskInst.getId() + "&openState=1&reloadedFile=1";
result.put("url",url);
return result;
}
}

View File

@ -0,0 +1,52 @@
package com.yili.org;
import java.sql.Connection;
import java.sql.SQLException;
import com.actionsoft.bpms.commons.mvc.view.ResponseObject;
import com.actionsoft.bpms.server.bind.annotation.Controller;
import com.actionsoft.bpms.server.bind.annotation.Mapping;
import com.actionsoft.bpms.util.DBSql;
import com.actionsoft.bpms.util.UtilString;
/**
* @Description 资产库菜单权限
* @author zlf
* @date 2022年7月29日
*
*/
@Controller
public class DisplayController {
@Mapping("com.actionsoft.apps.coe.pal.publisher_output_desk_display")
public String display(String sid,String uid) {
Connection open = DBSql.open();
ResponseObject ro = ResponseObject.newOkResponse();
try {
if("admin".equals(uid)) {
ro.put("roleType","true");
}else {
String roleType = DBSql.getString(open,"SELECT ROLETYPE FROM APP_ACT_COE_PAL_COOP_MEMBER R ,APP_ACT_COE_PAL_COOP_ROLE A WHERE R.ROLEID = A.ID AND USERID = ?", new Object[]{uid});
System.err.println("当前登录账号:"+uid+",用户权限:"+roleType);
if(UtilString.isEmpty(roleType)) {
ro.put("roleType","false");
}else {
if("1".equals(roleType)||"0".equals(roleType)||"2".equals(roleType)||"3".equals(roleType)) {
ro.put("roleType","true");
}else {
ro.put("roleType","false");
}
}
}
} catch (Exception e) {
// TODO: handle exception
}finally {
try {
open.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
return ro.toString();
}
}

View File

@ -0,0 +1,483 @@
package com.yili.org;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import org.dom4j.Document;
import org.dom4j.DocumentHelper;
import org.dom4j.Element;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
import com.actionsoft.bpms.commons.database.RowMap;
import com.actionsoft.bpms.org.cache.OrgCache;
import com.actionsoft.bpms.org.cache.RoleCache;
import com.actionsoft.bpms.org.cache.UserCache;
import com.actionsoft.bpms.org.model.DepartmentModel;
import com.actionsoft.bpms.org.model.RoleModel;
import com.actionsoft.bpms.org.model.UserModel;
import com.actionsoft.bpms.schedule.IJob;
import com.actionsoft.bpms.util.DBSql;
import com.actionsoft.bpms.util.UtilString;
import com.actionsoft.exception.AWSException;
import com.actionsoft.sdk.local.SDK;
import com.actionsoft.sdk.local.api.ORGAPI;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.yili.util.UtilUrl;
/**
* 同步组织架构
* @PackageName: com.awspaas.user.apps.yili.integration.job
* @ClassName: Integration
* @author: yujh
* @date: 2022/5/18 21:38
*/
public class IntegrationJob implements IJob {
public static boolean init_flag = false;
public static String role_id = "";
@Override
public void execute(JobExecutionContext jobExecutionContext) throws JobExecutionException {
init_flag = Boolean.parseBoolean(SDK.getJobAPI().getJobParameter(jobExecutionContext));
SDK.getLogAPI().consoleInfo(">>>>>job执行开始");
SDK.getLogAPI().consoleInfo(">>>>>init部门执行开始");
initDept();
SDK.getLogAPI().consoleInfo(">>>>>init部门执行结束");
SDK.getLogAPI().consoleInfo(">>>>>init人员执行开始");
initUser();
SDK.getLogAPI().consoleInfo(">>>>>init人员执行结束");
SDK.getLogAPI().consoleInfo(">>>>>job执行结束");
OrgCache.reloadOrgCahce();
}
/**
* 先初始化以及部门
*
* @return
*/
public static String initDept() {
// String url = "http://10.119.254.52:9001/MDM/ESB_MDM_ALL_QuyMdmInfoSelectSrv";
String url = "http://10.105.1.115:8081/MDM/ESB_MDM_ALL_QuyMdmInfoSelectSrv";
int pageNum = 30;// 暂定320页
int pageSize = 300;// 一页300条记录
try {
for (int i = 1; i < pageNum; i++) {
String whereStr = "<whereFlag>Y</whereFlag>\n"
+ "<whereStr>ORG_CODE LIKE '%%' ORDER BY ORG_CODE</whereStr>\n";
// 增量同步修改3天之内的
if (init_flag) {
whereStr = " <whereFlag>Y</whereFlag>\n" + " <!--Optional:-->\n"
+ " <whereStr>LAST_UPDATE_DATE BETWEEN SYSDATE -3 AND SYSDATE AND ORG_CODE LIKE '%%' ORDER BY ORG_CODE</whereStr>\n";
}
String xmlData = "<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://service.business.extend.mdm.yili.com\">\n" +
" <soapenv:Header/>\n" +
" <soapenv:Body>\n" +
" <ser:getMdmInfoBySelectRequest>\n" +
" <!--Optional:-->\n" +
" <selectRequest>\n" +
" <!--Optional:-->\n" +
" <currentPage>"+i+"</currentPage>\n" +
" <!--Optional:-->\n" +
" <pageFlag>Y</pageFlag>\n" +
" <!--Optional:-->\n" +
" <pageSize>"+pageSize+"</pageSize>\n" +
" <!--Optional:-->\n" +
" <sourceAppName>LCGLPT</sourceAppName>\n" +
" <!--Optional:-->\n" +
" <viewName>CUX_SIEBEL_HR_ORG_V_NEW</viewName>\n" +
" <!--Optional:-->\n" +
whereStr +
" </selectRequest>\n" +
" </ser:getMdmInfoBySelectRequest>\n" +
" </soapenv:Body>\n" +
"</soapenv:Envelope>";
String postSoap = UtilUrl.doPostSoap(url, xmlData, "");
//System.err.println("同步部门======》"+postSoap);
Document document = DocumentHelper.parseText(postSoap);
Element rootElement = document.getRootElement();
Element result = rootElement.element("Body").element("getMdmInfoBySelectRequestResponse")
.element("return");
String resultString = result.element("resultJson").getData().toString();
JSONArray resultArray = JSONObject.parseArray(resultString);
if (resultArray.size() > 0) {
SDK.getLogAPI().consoleInfo(">>>>>遍历部门数据第"+i +"页数据:"+resultArray.size());
try {
JSONArray level1Array = new JSONArray();
JSONArray levelNo1Array = new JSONArray();
for (Object o : resultArray) {
JSONObject resultJson = JSONObject.parseObject(o.toString());
String parent_id = resultJson.getString("PARENT_ID");
if (UtilString.isEmpty(parent_id) || parent_id.equals("00000001")) {
level1Array.add(resultJson);
} else {
levelNo1Array.add(resultJson);
}
}
createDept(level1Array);
createDept(levelNo1Array);
} catch (Exception e) {
e.printStackTrace();
} finally {
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
return "";
}
/**
* 初始化人员
*
* @return
*/
public static String initUser() {
role_id = SDK.getAppAPI().getProperty("com.awspaas.user.apps.yili.integration", "default_role_id");
//String url = "http://10.119.254.52:9001/MDM/ESB_MDM_ALL_QuyMdmInfoSelectSrv";
String url = "http://10.105.1.115:8081/MDM/ESB_MDM_ALL_QuyMdmInfoSelectSrv";
//加入分页
int pageNum = 320;//暂定320页
int pageSize = 300;//一页300条记录
try {
for (int i = 1; i < pageNum; i++) {
//System.out.println(">>>>>>>>>>>>>>>人员第"+i +"页开始");
String whereStr ="<whereFlag>Y</whereFlag>\n" +
"<whereStr>STATUS != 'M'</whereStr>\n";
//增量同步修改一天之内的
if(init_flag){
whereStr = " <whereFlag>Y </whereFlag>\n" +
" <!--Optional:-->\n" +
" <whereStr>LAST_UPDATE_TIME BETWEEN SYSDATE -3 AND SYSDATE</whereStr>\n";
//" <whereStr>STATUS = 'A'</whereStr>\n";
}
String xmlData = "<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://service.business.extend.mdm.yili.com\">\n" +
" <soapenv:Header/>\n" +
" <soapenv:Body>\n" +
" <ser:getMdmInfoBySelectRequest>\n" +
" <!--Optional:-->\n" +
" <selectRequest>\n" +
" <!--Optional:-->\n" +
" <currentPage>" + i + "</currentPage>\n" +
" <!--Optional:-->\n" +
" <pageFlag>Y</pageFlag>\n" +
" <!--Optional:-->\n" +
" <pageSize>" + pageSize + "</pageSize>\n" +
" <!--Optional:-->\n" +
" <sourceAppName>LCGLPT</sourceAppName>\n" +
" <!--Optional:-->\n" +
" <viewName>GET_PERSON_BASIC_INFO</viewName>\n" +
" <!--Optional:-->\n" +
whereStr +
" </selectRequest>\n" +
" </ser:getMdmInfoBySelectRequest>\n" +
" </soapenv:Body>\n" +
"</soapenv:Envelope>";
String postSoap = UtilUrl.doPostSoap(url, xmlData, "");
Document document = DocumentHelper.parseText(postSoap);
Element rootElement = document.getRootElement();
Element result = rootElement.element("Body").element("getMdmInfoBySelectRequestResponse").element("return");
String resultString = result.element("resultJson").getData().toString();
JSONArray resultArray = JSONObject.parseArray(resultString);
if (resultArray.size() > 0) {
SDK.getLogAPI().consoleInfo(">>>>>遍历人员第"+i +"页数据:"+resultArray.size());
createUser(resultArray);
}else{
break;
}
}
} catch (Exception e) {
e.printStackTrace();
} finally {
}
return "";
}
/**
* 部门信息执行插入或更新
*
* @param resultArray
* @return
*/
public static void createDept(JSONArray resultArray) {
if (resultArray.size() == 0) {
return;
}
JSONArray noParenIdArray = new JSONArray();
String yili_company_id = SDK.getAppAPI().getProperty("com.awspaas.user.apps.yili.integration", "YILI_COMPANY_ID");
for (Object o : resultArray) {
JSONObject resultJson = JSONObject.parseObject(o.toString());
String org_code = resultJson.getString("ORG_CODE");
String dept_flag = resultJson.getString("DEPT_FLAG");
Date last_update_date = resultJson.getDate("LAST_UPDATE_DATE");
String ehr_last_update_date = resultJson.getString("EHR_LAST_UPDATE_DATE");
String parent_id = resultJson.getString("PARENT_ID");
String parent_name = resultJson.getString("PARENT_NAME");
String full_name = resultJson.getString("FULL_NAME");
String eff_status = resultJson.getString("EFF_STATUS");
String org_name = resultJson.getString("ORG_NAME");
String hr_org_id = resultJson.getString("HR_ORG_ID");
String manager_id = resultJson.getString("MANAGER_ID");//负责人id
if (UtilString.isEmpty(full_name)) {
full_name = "默认部门名称" + System.currentTimeMillis();
}
String start_date = resultJson.getString("START_DATE");
String end_date = resultJson.getString("END_DATE");
JSONObject ext5 = new JSONObject();
ext5.put("ehr_last_update_date", ehr_last_update_date);
ext5.put("parent_name", parent_name);
if (org_code.indexOf("-") > 0 || org_code.equals("00000001")) {//已撤销的机构就过滤掉,和集团
continue;
}
String currentId = getDeptIdByOuterId(org_code);
if (UtilString.isEmpty(currentId)) {//不存在则走新增操作
String parent_dept_id = "0";
if (parent_id.equals("00000001")) {
parent_dept_id = "";
} else if (UtilString.isNotEmpty(parent_id)) {
String selectParentDeptSql = " SELECT ID FROM ORGDEPARTMENT WHERE OUTERID = ? ";
parent_dept_id = DBSql.getString(selectParentDeptSql, new Object[]{parent_id});
if (UtilString.isEmpty(parent_dept_id)) {//如果为空则说明没找到
noParenIdArray.add(resultJson);
continue;
}
}
String createDepartment = SDK.getORGAPI().createDepartment(yili_company_id, org_name, org_code, "", parent_dept_id, hr_org_id,"", full_name, manager_id, ext5.toString(), dept_flag, org_code, start_date, end_date);
String buName = "";
//String sql ="SELECT * FROM orgdepartment WHERE DEPARTMENTNO = '"++"'";
String sqls ="SELECT BUSINESS_UNIT FROM BO_EU_ORG_POSTS WHERE DEPTID = '"+currentId+"'";
RowMap map = DBSql.getMap(sqls);
if(map!=null) {
SDK.getORGAPI().updateDepartment(createDepartment, org_name, org_code, ORGAPI.NO_UPDATE, hr_org_id, buName, full_name, map.getString("BUSINESS_UNIT"), ext5.toString(), dept_flag, org_code, start_date, end_date);
}
/*
String sql ="SELECT USERID FROM ORGUSER WHERE DEPARTMENTID = '"+createDepartment+"'";
* String userId = DBSql.getString(sql); UserModel user =
* SDK.getORGAPI().getUser(userId); String departmentId =
* user.getDepartmentId(); if(user!=null) { buId = user.getExt3(); buName =
* user.getExt4(); }
*/
//String createDepartment = SDK.getORGAPI().createDepartment(yili_company_id, org_name, org_code, "", parent_dept_id, "", "", "", "", ext5.toString(), dept_flag, org_code, start_date, end_date);
if("I".equals(eff_status)) {
if(!SDK.getORGAPI().getDepartmentById(createDepartment).isClosed()) {
SDK.getORGAPI().closeDepartment(createDepartment);
}
}
} else {//存在则走更新操作
if(UtilString.isNotEmpty(org_name)&&"总部".equals(org_name)) {
org_name = "伊利集团总部";
}
String buName = "";
//String sql ="SELECT * FROM orgdepartment WHERE DEPARTMENTNO = '"++"'";
String sql ="SELECT BUSINESS_UNIT FROM BO_EU_ORG_POSTS WHERE DEPTID = '"+currentId+"'";
RowMap map = DBSql.getMap(sql);
if(map!=null) {
SDK.getORGAPI().updateDepartment(currentId, org_name, org_code, ORGAPI.NO_UPDATE, hr_org_id, buName, full_name, map.getString("BUSINESS_UNIT"), ext5.toString(), dept_flag, org_code, start_date, end_date);
}
if("A".equals(eff_status)) {
if(SDK.getORGAPI().getDepartmentById(currentId).isClosed()) {
SDK.getORGAPI().activeDepartment(currentId);
}
}
// SDK.getORGAPI().updateDepartment(currentId, org_name, org_code, ORGAPI.NO_UPDATE, "", "", "", "", ext5.toString(), dept_flag, org_code, start_date, end_date);
if("I".equals(eff_status)) {
if(!SDK.getORGAPI().getDepartmentById(currentId).isClosed()) {
SDK.getORGAPI().closeDepartment(currentId);
}
}
}
}
if (noParenIdArray.size() > 0) {
createDept(noParenIdArray);
}
}
/**
* 新增或更新人员
*
* @param resultArray
* @param conn
*/
public static void createUser(JSONArray resultArray) {
JSONArray emptyArray = new JSONArray();
for (Object o : resultArray) {
JSONObject resultJson = JSONObject.parseObject(o.toString());
String emp_id = resultJson.getString("EMP_ID");//员工编号
String emp_name = resultJson.getString("EMP_NAME");//员工姓名
String business_unit = resultJson.getString("BUSINESS_UNIT");//事业部id
String bu_name = resultJson.getString("BU_NAME");//事业部名称
String dept_id = resultJson.getString("DEPT_ID");//部门id
String status = resultJson.getString("STATUS");//人员状态编码
String status_name = resultJson.getString("STATUS_NAME");//人员状态编码
String sex = resultJson.getString("SEX");//性别编码
String sex_name = resultJson.getString("SEX_NAME");//性别描述
String phone = resultJson.getString("PHONE");//移动电话
String email_addr = resultJson.getString("EMAIL_ADDR");//邮箱
String job_class = resultJson.getString("JOB_CLASS");//职级类别编码
String job_class_name = resultJson.getString("JOB_CLASS_NAME");//职级类别描述
String job_family = resultJson.getString("JOB_FAMILY");//职级编码
String job_family_name = resultJson.getString("JOB_FAMILY_NAME");//职级描述
String job_code = resultJson.getString("JOB_CODE");//职务id
String job_name = resultJson.getString("JOB_NAME");//职务描述
String position = resultJson.getString("POSITION");//新职务ID
String position_name = resultJson.getString("POSITION_NAME");//新职务描述
String supervisor_id = resultJson.getString("SUPERVISOR_ID");//直接上级id
String currentId = getDeptIdByOuterId(dept_id);
if (UtilString.isEmpty(currentId)) {
System.out.println(">>>>>dept_id:"+dept_id);
System.out.println(">>>>>currentId:"+currentId);
emptyArray.add(resultJson);
continue;
}
JSONObject ext5 = new JSONObject();
ext5.put("business_unit", business_unit);
ext5.put("bu_name", bu_name);
ext5.put("sex", sex);
UserModel model = UserCache.getModel(emp_id);
String sql ="SELECT ID FROM ORGUSER WHERE USERID = ?";
String Id = DBSql.getString(sql,new Object[] {emp_id});
if(null != model||UtilString.isNotEmpty(Id)){
//用户名合法则存在走更新逻辑
if("I".equals(status)) {
//SDK.getORGAPI().removeUser(emp_id);
disabledOrActiveUser(emp_id, status);
System.err.println("本次同步注销人员===>"+emp_id);
continue;
}else {
Map<String,Object> map =new HashMap<String,Object>();
map.put("departmentId",currentId);
map.put("mobile",phone);
map.put("position_layer",job_class);
map.put("positionNo",position);
map.put("positionName",position_name);
map.put("email","");//邮件置空规避不合法
map.put("reportTo","");//汇报人置空规避不合法
map.put("ext1",job_family);
map.put("ext2",job_family_name);
map.put("ext3",business_unit);
map.put("ext4",bu_name);
map.put("ext5",ext5);
int i = SDK.getORGAPI().updateUser(emp_id, map);
//因为新增是汇报人和email会强校验则sql执行修改操作
String updateUserSql = " UPDATE ORGUSER SET EMAIL = ?,REPORTTO = ? WHERE USERID = ?";
if(UtilString.isNotEmpty(email_addr)){
email_addr = email_addr.split(" ")[0];
}
if(UtilString.isNotEmpty(email_addr) && email_addr.indexOf("/")>0){
email_addr = email_addr.split("/")[1];
}
DBSql.update(updateUserSql,new Object[]{email_addr,supervisor_id,emp_id});
}
}else {//不存在则走新增逻辑或者激活逻辑
//先判断角色是否存在不存在则创建
String roleId = checkOrCreateRole(job_name,job_code,job_class_name);
//先判断岗位是否存在不存在则创建
checkOrCreatePostion(position_name,position,job_class_name);
int createUser = 0;
try {
createUser = SDK.getORGAPI().createUser(currentId, emp_id, emp_name, roleId, emp_id, "", false, "", phone, "", "", job_class, position, position_name, "", job_family, job_family_name, business_unit, bu_name, ext5.toString(), dept_id);
} catch (Exception e) {
// TODO: handle exception
}
if(createUser!=0) {
System.err.println("本次同步新增人员===>"+emp_name+":"+emp_id);
}
//因为新增是汇报人和email会强校验则sql执行修改操作
String updateUserSql = " UPDATE ORGUSER SET EMAIL = ?,REPORTTO = ? WHERE USERID = ?";
if(UtilString.isNotEmpty(email_addr)){
email_addr = email_addr.split(" ")[0];
}
if(UtilString.isNotEmpty(email_addr) && email_addr.indexOf("/")>0){
email_addr = email_addr.split("/")[1];
}
DBSql.update(updateUserSql,new Object[]{email_addr,supervisor_id,emp_id});
}
disabledOrActiveUser(emp_id,status);
}
SDK.getLogAPI().consoleInfo("emptyArray.size():"+emptyArray.size() + "");
}
/**
* 先判断角色是否存在不存在则创建
*
* @return
*/
public static String checkOrCreateRole(String job_name, String job_code,String job_class_name) {
RoleModel model = RoleCache.getModelByNo(job_code);
try {
if(UtilString.isEmpty(model)){
String role = SDK.getORGAPI().createRole(job_name, job_class_name, job_code);
System.err.println("本次同步新增角色===>"+job_name);
return role;
}
}catch (AWSException e){
if(e.getCause().toString().indexOf("重复")>0){
String role = SDK.getORGAPI().createRole(job_name+System.currentTimeMillis(), job_class_name, job_code);
System.err.println("本次同步新增角色===>"+job_name);
return role;
}
e.printStackTrace();
return role_id;
}
return model.getId();
}
/**
* 先判断岗位是否存在不存在则创建
*
* @return
*/
public static String checkOrCreatePostion(String position_name, String position,String job_class_name) {
RoleModel model = RoleCache.getModelByNo(position);
try {
if(UtilString.isEmpty(model)){
String role = SDK.getORGAPI().createPosition(position_name, job_class_name, position);
System.err.println("本次同步新增岗位===>"+position_name);
return role;
}
}catch (AWSException e){
e.printStackTrace();
return role_id;
}
return model.getId();
}
/**
* 根据外部Id获取部门Id
*
* @return
*/
public static String getDeptIdByOuterId(String org_code) {
String selectDeptSql = " SELECT ID FROM ORGDEPARTMENT WHERE OUTERID = ? ";
String currentId = DBSql.getString(selectDeptSql, new Object[]{org_code});
return currentId;
}
/**
* 注销或激活用户
* @return
*/
public static void disabledOrActiveUser(String userId,String status){
if(status.equals("A")){ //有效员工
SDK.getORGAPI().activateUser(userId);
}else if(status.equals("I")){//无效员工
SDK.getORGAPI().disabledUser(userId);
}
}
}

View File

@ -0,0 +1,20 @@
package com.yili.org;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
import com.actionsoft.bpms.org.cache.OrgCache;
import com.actionsoft.bpms.schedule.IJob;
/**
* @PackageName: com.awspaas.user.apps.yili.integration.job
* @ClassName: OrgReloadJob
* @author: yujh
* @date: 2022/5/23 9:03
*/
public class OrgReloadJob implements IJob {
@Override
public void execute(JobExecutionContext jobExecutionContext) throws JobExecutionException {
OrgCache.reloadOrgCahce();
}
}

View File

@ -0,0 +1,235 @@
package com.yili.org;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.Map;
import org.dom4j.Document;
import org.dom4j.DocumentHelper;
import org.dom4j.Element;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
import com.actionsoft.bpms.bo.engine.BO;
import com.actionsoft.bpms.commons.database.RowMap;
import com.actionsoft.bpms.org.cache.OrgCache;
import com.actionsoft.bpms.org.model.DepartmentModel;
import com.actionsoft.bpms.schedule.IJob;
import com.actionsoft.bpms.server.UserContext;
import com.actionsoft.bpms.util.DBSql;
import com.actionsoft.bpms.util.UtilString;
import com.actionsoft.sdk.local.SDK;
import com.actionsoft.sdk.local.api.ORGAPI;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.yili.util.UtilUrl;
/**
* 同步岗位
* @PackageName: com.awspaas.user.apps.yili.integration.job
* @ClassName: Integration
* @author: yujh
* @date: 2022/5/18 21:38
*/
public class SynPostJob implements IJob {
public static boolean init_flag = false;
public static String role_id = "";
@Override
public void execute(JobExecutionContext jobExecutionContext) throws JobExecutionException {
init_flag = Boolean.parseBoolean(SDK.getJobAPI().getJobParameter(jobExecutionContext));
SDK.getLogAPI().consoleInfo(">>>>>job执行开始");
SDK.getLogAPI().consoleInfo(">>>>>init岗位执行开始");
long startTime = System.currentTimeMillis(); //获取开始时间
initUser();
long endTime = System.currentTimeMillis(); //获取结束时间
System.out.println("程序运行时间:" + (endTime - startTime)/1000/60 + "min"); //输出程序运行时间
SDK.getLogAPI().consoleInfo(">>>>>init岗位执行结束");
SDK.getLogAPI().consoleInfo(">>>>>job执行结束");
OrgCache.reloadOrgCahce();
}
/**
* 初始化岗位
*
* @return
*/
public static String initUser() {
role_id = SDK.getAppAPI().getProperty("com.awspaas.user.apps.yili.integration", "default_role_id");
String url = "http://10.105.1.115:8081/MDM/ESB_MDM_ALL_QuyMdmInfoSelectSrv";
// String url = "http://10.119.254.52:9001/MDM/ESB_MDM_ALL_QuyMdmInfoSelectSrv";
// 加入分页
int num = 0;
int count = 0;
int pageNum = 300;// 暂定320页
int pageSize = 300;// 一页300条记录
Connection conn = null;
try {
conn = DBSql.open();
for (int i = 1; i <= pageNum; i++) {
System.out.println(">>>>>>>>>>>>>>>同步岗位第" + i + "页开始");
// 增量同步修改一个月之内的
// System.err.println("---------------"+init_flag);
//String whereStr = "<whereFlag>N</whereFlag><whereStr>EFF_STATUS = 'I'</whereStr>\n";
String whereStr = "<whereFlag>N</whereFlag><whereStr></whereStr>\n";
if (init_flag) {
whereStr = " <whereFlag>Y</whereFlag>\n" + " <!--Optional:-->\n"
+ " <whereStr>LAST_UPDATE_TIME BETWEEN SYSDATE -1 AND SYSDATE </whereStr>";
}
String xmlData = "<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://service.business.extend.mdm.yili.com\">\n"
+ " <soapenv:Header/>\n" + " <soapenv:Body>\n" + " <ser:getMdmInfoBySelectRequest>\n"
+ " <!--Optional:-->\n" + " <selectRequest>\n"
+ " <!--Optional:-->\n" + " <currentPage>" + i + "</currentPage>\n"
+ " <!--Optional:-->\n" + " <pageFlag>Y</pageFlag>\n"
+ " <!--Optional:-->\n" + " <pageSize>" + pageSize + "</pageSize>\n"
+ " <!--Optional:-->\n" + " <sourceAppName>LCGLPT</sourceAppName>\n"
+ " <!--Optional:-->\n" + " <viewName>V_GET_POSITION</viewName>\n"
+ " <!--Optional:-->\n" + whereStr + " </selectRequest>\n"
+ " </ser:getMdmInfoBySelectRequest>\n" + " </soapenv:Body>\n" + "</soapenv:Envelope>";
String postSoap = UtilUrl.doPostSoap(url, xmlData, "");
Document document = DocumentHelper.parseText(postSoap);
Element rootElement = document.getRootElement();
Element result = rootElement.element("Body").element("getMdmInfoBySelectRequestResponse")
.element("return");
// String pageSizes = result.element("pageSize").getData().toString();
// System.err.println("pageSizes========"+pageSizes);
String resultString = result.element("resultJson").getData().toString();
// String resultNum = result.element("totalRecord").getData().toString();
JSONArray resultArray = JSONObject.parseArray(resultString);
count += resultArray.size();
if (resultArray.size() > 0) {
SDK.getLogAPI().consoleInfo(">>>>>遍历岗位第" + i + "页数据:" + resultArray.size());
int createUser = createPost(resultArray, conn);
num += createUser;
} else {
break;
}
}
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
conn.close();
} catch (SQLException throwables) {
throwables.printStackTrace();
}
}
SDK.getLogAPI().consoleInfo("本次共同步岗位数据num" + num + "");
SDK.getLogAPI().consoleInfo("本次共同步岗位数据count" + count + "");
return "";
}
/**
* 新增或更新岗位
*
* @param resultArray
* @param conn
*/
public static int createPost(JSONArray resultArray, Connection conn) {
int count = 0;
for (Object o : resultArray) {
JSONObject resultJson = JSONObject.parseObject(o.toString());
String postId = resultJson.getString("POSITION_NBR");// 职位编码
String sqt = "SELECT * FROM BO_EU_ORG_POSTS WHERE POSITION_NBR ='" + postId + "'";
RowMap map = DBSql.getMap(sqt);
int createData = createData(resultJson, map);
if(createData>0) {
count++;
}
}
return count;
}
/**
* 创建/更新数据
* @param resultJson
* @param map
* @return
*/
public static int createData(JSONObject resultJson, RowMap map) {
ORGAPI orgapi = SDK.getORGAPI();
BO bo = new BO();
if(map!=null) {
bo= SDK.getBOAPI().get("BO_EU_ORG_POSTS", map.getString("ID"));
}
String outerId = resultJson.getString("DEPTID");// 部门id
String status = resultJson.getString("EFF_STATUS");
String postId = resultJson.getString("POSITION_NBR");// 岗位ID
Map<String, Object> innerMap = resultJson.getInnerMap();
String sql = "SELECT ID FROM ORGDEPARTMENT WHERE OUTERID = '" + outerId + "'";
String deId = DBSql.getString(sql);
innerMap.remove("DEPTID");
innerMap.put("OUTERID", outerId);
innerMap.put("STATUS", status);
if (UtilString.isNotEmpty(deId)) {
innerMap.put("DEPTID", deId);
DepartmentModel departmentById = orgapi.getDepartmentById(deId);
if (null != departmentById) {
innerMap.put("DEPTNAME", departmentById.getName());
String parentDepartmentId = departmentById.getParentDepartmentId();
innerMap.put("DEPTPEID", parentDepartmentId);
if ("0".equals(parentDepartmentId)) {
innerMap.put("DEPTPENAME", "内蒙古伊利实业集团股份有限公司");
} else {
innerMap.put("DEPTPENAME", orgapi.getDepartmentById(parentDepartmentId).getName());
}
}
}
bo.setAll(innerMap);
if(map!=null) {
int update = SDK.getBOAPI().update("BO_EU_ORG_POSTS", bo);
if (update > 0) {
if ("A".equals(status)) {
//System.err.println("更新的岗位======>" + postId);
} else {
System.err.println("注销的岗位======>" + postId);
}
}
return update;
}else {
int createDataBO = 0;
if("A".equals(status)) {
createDataBO = SDK.getBOAPI().createDataBO("BO_EU_ORG_POSTS", bo, UserContext.fromUID("admin"));
if(createDataBO>0) {
System.err.println("新增的岗位======>" + postId);
}
}
return createDataBO;
}
}
/**
* 岗位是否存在
* @return
*/
public static String getPost(String postId, Connection conn){
String selectUserSql = " SELECT ID FROM ORGROLE WHERE ROLENO = ? ";
String userId = DBSql.getString(conn, selectUserSql, new Object[]{postId});
return userId;
}
/**
* 根据外部Id获取部门Id
*
* @return
*/
public static String getDeptIdByOuterId(String org_code, Connection conn) {
String selectDeptSql = " SELECT ID FROM ORGDEPARTMENT WHERE OUTERID = ? ";
String currentId = DBSql.getString(conn, selectDeptSql, new Object[]{org_code});
return currentId;
}
}

View File

@ -0,0 +1,129 @@
package com.yili.org;
import java.sql.Connection;
import java.util.List;
import java.util.Map;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
import com.actionsoft.bpms.bo.engine.BO;
import com.actionsoft.bpms.commons.database.RowMap;
import com.actionsoft.bpms.org.cache.OrgCache;
import com.actionsoft.bpms.org.model.DepartmentModel;
import com.actionsoft.bpms.schedule.IJob;
import com.actionsoft.bpms.server.UserContext;
import com.actionsoft.bpms.util.DBSql;
import com.actionsoft.bpms.util.UtilString;
import com.actionsoft.sdk.local.SDK;
import com.actionsoft.sdk.local.api.ORGAPI;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
/**
* 同步岗位
* @PackageName: com.awspaas.user.apps.yili.integration.job
* @ClassName: Integration
* @author: yujh
* @date: 2022/5/18 21:38
*/
public class SynPostJob2 implements IJob {
public static boolean init_flag = false;
public static String role_id = "";
public void execute(JobExecutionContext jobExecutionContext) throws JobExecutionException {
init_flag = Boolean.parseBoolean(SDK.getJobAPI().getJobParameter(jobExecutionContext));
SDK.getLogAPI().consoleInfo(">>>>>job执行开始");
SDK.getLogAPI().consoleInfo(">>>>>init岗位执行开始");
long startTime = System.currentTimeMillis(); //获取开始时间
long endTime = System.currentTimeMillis(); //获取结束时间
System.out.println("程序运行时间:" + (endTime - startTime)/1000/60 + "min"); //输出程序运行时间
SDK.getLogAPI().consoleInfo(">>>>>init岗位执行结束");
SDK.getLogAPI().consoleInfo(">>>>>job执行结束");
OrgCache.reloadOrgCahce();
}
/**
* 新增或更新岗位
*
* @param resultArray
* @param conn
*/
public static int createUser(JSONArray resultArray, Connection conn) {
List<RowMap> maps = DBSql.getMaps("SELECT * FROM BO_EU_ORG_POSTS");
for (RowMap rowMap : maps) {
String deptId = rowMap.getString("DEPTID");
}
ORGAPI orgapi = SDK.getORGAPI();
int count = 0;
for (Object o : resultArray) {
BO bo = new BO();
JSONObject resultJson = JSONObject.parseObject(o.toString());
String postId = resultJson.getString("POSITION_NBR");//职位编码
String sqt = "SELECT ID FROM BO_EU_ORG_POSTS WHERE POSITION_NBR ='"+postId+"'";
if(UtilString.isEmpty(DBSql.getString(sqt))) {
String outerId = resultJson.getString("DEPTID");// 部门id
Map<String, Object> innerMap = resultJson.getInnerMap();
String sql = "SELECT ID FROM ORGDEPARTMENT WHERE OUTERID = '"+outerId+"'";
String deId = DBSql.getString(sql);
innerMap.remove("DEPTID");
innerMap.put("OUTERID", outerId);
if(UtilString.isNotEmpty(deId)) {
innerMap.put("DEPTID",deId);
DepartmentModel departmentById = orgapi.getDepartmentById(deId);
if (null!=departmentById) {
innerMap.put("DEPTNAME", departmentById.getName());
String parentDepartmentId = departmentById.getParentDepartmentId();
innerMap.put("DEPTPEID", parentDepartmentId);
if ("0".equals(parentDepartmentId)) {
innerMap.put("DEPTPENAME", "内蒙古伊利实业集团股份有限公司");
} else {
innerMap.put("DEPTPENAME", orgapi.getDepartmentById(parentDepartmentId).getName());
}
}
}
bo.setAll(innerMap);
SDK.getBOAPI().createDataBO("BO_EU_ORG_POSTS", bo, UserContext.fromUID("admin"));
}
}
return count;
}
/**
* 岗位是否存在
* @return
*/
public static String getPost(String postId, Connection conn){
String selectUserSql = " SELECT ID FROM ORGROLE WHERE ROLENO = ? ";
String userId = DBSql.getString(conn, selectUserSql, new Object[]{postId});
return userId;
}
/**
* 根据外部Id获取部门Id
*
* @return
*/
public static String getDeptIdByOuterId(String org_code, Connection conn) {
String selectDeptSql = " SELECT ID FROM ORGDEPARTMENT WHERE OUTERID = ? ";
String currentId = DBSql.getString(conn, selectDeptSql, new Object[]{org_code});
return currentId;
}
}

View File

@ -0,0 +1,176 @@
package com.yili.org;
import java.util.ArrayList;
import java.util.List;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
import com.actionsoft.bpms.bo.engine.BO;
import com.actionsoft.bpms.commons.database.RowMap;
import com.actionsoft.bpms.schedule.IJob;
import com.actionsoft.bpms.server.UserContext;
import com.actionsoft.bpms.util.DBSql;
import com.actionsoft.bpms.util.UUIDGener;
import com.actionsoft.bpms.util.UtilString;
import com.actionsoft.sdk.local.SDK;
/**
* 同步阅览权限
* @PackageName: com.awspaas.user.apps.yili.integration.job
* @ClassName: Integration
* @author: yujh
* @date: 2022/9/18 21:38
*/
public class SynPrem implements IJob {
public void execute(JobExecutionContext jobExecutionContext) throws JobExecutionException {
UserContext uc = UserContext.fromUID("admin");
List<BO> list = SDK.getBOAPI().query("BO_EU_PUBLISH_SCOPE_IMPORT").list();
for (BO bos : list) {
String palName = bos.getString("PALNAME");
String orgPerm = bos.getString("ORGPERM");
String postPerm = bos.getString("POSTPERM");
String levelPrem = bos.getString("LEVELPERM");
String sendScope = bos.getString("SEND_SCOP");
StringBuffer orgFail = new StringBuffer();
StringBuffer orgPermBuf = new StringBuffer();
String[] orgPermArr = orgPerm.split("");
for (int i = 0; i < orgPermArr.length; i++) {
if ("伊利集团".equals(orgPermArr[i])) {
sendScope = "1";
} else {
String dsql = "SELECT ID FROM ORGDEPARTMENT WHERE DEPARTMENTNAME = '" + orgPermArr[i].trim() + "'";
String depId = DBSql.getString(dsql);
if (UtilString.isNotEmpty(depId)) {
if(orgPermBuf.length()>0) {
String string = orgPermBuf.toString();
if(!string.contains(depId)) {
if(i!=orgPermArr.length-1) {
orgPermBuf.append(depId).append(",");
}else {
orgPermBuf.append(depId);
}
}
}else {
if (i!=orgPermArr.length-1) {
orgPermBuf.append(depId).append(",");
} else {
orgPermBuf.append(depId);
}
}
} else {
if (UtilString.isNotEmpty(orgPermArr[i])) {
orgFail.append(orgPermArr[i]).append(",");
}
}
}
}
bos.set("ORGFAIL", orgFail);
StringBuffer postFail = new StringBuffer();
StringBuffer postPermBuf = new StringBuffer();
String[] postPermArr = postPerm.split("");
for (int i = 0; i < postPermArr.length; i++) {
String postNbrSql = "SELECT POSITION_NBR FROM BO_EU_ORG_POSTS WHERE DESCR = '" + postPermArr[i].trim() + "'";
String postNbr = DBSql.getString(postNbrSql);
if (UtilString.isNotEmpty(postNbr)) {
if(postPermBuf.length()>0) {
String string = postPermBuf.toString();
if(!string.contains(postNbr)) {
if (i!=postPermArr.length-1) {
postPermBuf.append(postNbr).append(",");
} else {
postPermBuf.append(postNbr);
}
}
}else {
if (i!=postPermArr.length-1) {
postPermBuf.append(postNbr).append(",");
} else {
postPermBuf.append(postNbr);
}
}
} else {
if (UtilString.isNotEmpty(postPermArr[i])) {
postFail.append(postPermArr[i]).append(",");
}
}
}
bos.set("POSTFAIL", postFail);
StringBuffer levelFail = new StringBuffer();
StringBuffer levelPremArrBuf = new StringBuffer();
String[] levelPremArr = levelPrem.split("");
for (String str : levelPremArr) {
if (UtilString.isNotEmpty(str)) {
if (str.equals(levelPremArr[levelPremArr.length - 1])) {
levelPremArrBuf.append(str);
} else {
levelPremArrBuf.append(str).append(",");
}
} else {
if (UtilString.isNotEmpty(str)) {
levelFail.append(str).append(",");
}
}
}
bos.set("LEVELFAIL", levelFail);
List<BO> premlist = new ArrayList<>();
String sqls = "SELECT * FROM APP_ACT_COE_PAL_REPOSITORY WHERE PLNAME = '" + palName.trim() + "'";
List<RowMap> maps = DBSql.getMaps(sqls);
if (maps.size() == 0) {
bos.set("RESULT", "导入失败,未匹配到模型!");
SDK.getBOAPI().update("BO_EU_PUBLISH_SCOPE_IMPORT", bos);
} else {
for (RowMap rowMap : maps) {
String sqlString = "SELECT ID FROM BO_ACT_PUBLISH_PERM_SCOPE WHERE PALVERSIONID = '"
+ rowMap.getString("PLVERSIONID") + "'";
List<RowMap> maps2 = DBSql.getMaps(sqlString);
for (RowMap rowMapw : maps2) {
SDK.getBOAPI().remove("BO_ACT_PUBLISH_PERM_SCOPE", rowMapw.getString("ID"));
}
BO bo = new BO();
bo.set("PERMID", UUIDGener.getUUID());
bo.set("WSID", rowMap.getString("WSID"));
bo.set("PALVERSIONID", rowMap.getString("PLVERSIONID"));
bo.set("PALNAME", rowMap.getString("PLNAME"));
bo.set("PERMTYPE", sendScope);
bo.set("ORGPERM", orgPermBuf);
bo.set("POSTPERM", postPermBuf);
bo.set("LEVELPERM", levelPremArrBuf);
premlist.add(bo);
}
if (premlist.size() > 0) {
try {
if (orgFail.length() != 0 || postFail.length() != 0 || levelFail.length() != 0) {
bos.set("RESULT", "导入部分成功!");
} else {
bos.set("RESULT", "导入成功!");
}
SDK.getBOAPI().createDataBO("BO_ACT_PUBLISH_PERM_SCOPE", premlist, uc);
SDK.getLogAPI().consoleInfo("[发布范围权限信息保存至范围权限表]更新成功");
} catch (Exception e) {
bos.set("RESULT", "导入失败,字段长度超出范围!");
}
SDK.getBOAPI().update("BO_EU_PUBLISH_SCOPE_IMPORT", bos);
}
}
}
}
}

View File

@ -0,0 +1,243 @@
package com.yili.org;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.dom4j.Document;
import org.dom4j.DocumentHelper;
import org.dom4j.Element;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
import com.actionsoft.bpms.commons.database.RowMap;
import com.actionsoft.bpms.org.cache.OrgCache;
import com.actionsoft.bpms.schedule.IJob;
import com.actionsoft.bpms.util.DBSql;
import com.actionsoft.bpms.util.UtilString;
import com.actionsoft.sdk.local.SDK;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.yili.util.UtilUrl;
/**
* 同步组织架构
* @PackageName: com.awspaas.user.apps.yili.integration.job
* @ClassName: Integration
* @author: yujh
* @date: 2022/5/18 21:38
*/
public class SynUserJob implements IJob {
public static boolean init_flag = false;
public static String role_id = "";
@Override
public void execute(JobExecutionContext jobExecutionContext) throws JobExecutionException {
init_flag = Boolean.parseBoolean(SDK.getJobAPI().getJobParameter(jobExecutionContext));
SDK.getLogAPI().consoleInfo(">>>>>job执行开始");
SDK.getLogAPI().consoleInfo(">>>>>init人员执行开始");
long startTime = System.currentTimeMillis(); //获取开始时间
initUser();
long endTime = System.currentTimeMillis(); //获取结束时间
System.out.println("程序运行时间:" + (endTime - startTime)/1000/60 + "min"); //输出程序运行时间
SDK.getLogAPI().consoleInfo(">>>>>init人员执行结束");
SDK.getLogAPI().consoleInfo(">>>>>job执行结束");
OrgCache.reloadOrgCahce();
}
/**
* 初始化人员
*
* @return
*/
public static String initUser() {
role_id = SDK.getAppAPI().getProperty("com.awspaas.user.apps.yili.integration", "default_role_id");
//String url = "http://10.119.254.52:9001/MDM/ESB_MDM_ALL_QuyMdmInfoSelectSrv";
String url = "http://10.105.1.115:8081/MDM/ESB_MDM_ALL_QuyMdmInfoSelectSrv";
//加入分页
int num = 0;
int count= 0;
int pageNum = 320;//暂定320页
int pageSize = 300;//一页300条记录
Connection conn = null;
try {
conn = DBSql.open();
for (int i = 1; i <= pageNum; i++) {
System.out.println(">>>>>>>>>>>>>>>同步人员第"+i +"页开始");
String whereStr ="<whereFlag>Y</"
+ "whereFlag>\n" +
"<whereStr>STATUS = 'A'</whereStr>\n";
//增量同步修改一个月之内的
System.err.println("---------------"+init_flag);
/*
* if(init_flag){ whereStr = " <whereFlag>Y</whereFlag>\n" +
* " <!--Optional:-->\n" +
* " <whereStr>LAST_UPDATE_TIME BETWEEN ADD_MONTHS(SYSDATE, -3) AND SYSDATE </whereStr>\n"
* ; //" <whereStr>STATUS = 'A'</whereStr>\n"; }
*/
String xmlData = "<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://service.business.extend.mdm.yili.com\">\n" +
" <soapenv:Header/>\n" +
" <soapenv:Body>\n" +
" <ser:getMdmInfoBySelectRequest>\n" +
" <!--Optional:-->\n" +
" <selectRequest>\n" +
" <!--Optional:-->\n" +
" <currentPage>" + i + "</currentPage>\n" +
" <!--Optional:-->\n" +
" <pageFlag>Y</pageFlag>\n" +
" <!--Optional:-->\n" +
" <pageSize>" + pageSize + "</pageSize>\n" +
" <!--Optional:-->\n" +
" <sourceAppName>LCGLPT</sourceAppName>\n" +
" <!--Optional:-->\n" +
" <viewName>GET_PERSON_BASIC_INFO</viewName>\n" +
" <!--Optional:-->\n" +
whereStr +
" </selectRequest>\n" +
" </ser:getMdmInfoBySelectRequest>\n" +
" </soapenv:Body>\n" +
"</soapenv:Envelope>";
String postSoap = UtilUrl.doPostSoap(url, xmlData, "");
Document document = DocumentHelper.parseText(postSoap);
Element rootElement = document.getRootElement();
Element result = rootElement.element("Body").element("getMdmInfoBySelectRequestResponse").element("return");
// String jsonString = JSONObject.toJSONString(result);
// System.err.println("接口返回结果:"+jsonString);
String resultString = result.element("resultJson").getData().toString();
//String resultNum = result.element("totalRecord").getData().toString();
String pageSizes = result.element("pageSize").getData().toString();
String nextPageFlag = result.element("nextPageFlag").getData().toString();
JSONArray resultArray = JSONObject.parseArray(resultString);
count+=resultArray.size();
if (resultArray.size() > 0) {
//SDK.getLogAPI().consoleInfo(">>>>>遍历人员第"+i +"页数据:"+resultArray.size());
int createUser = createUser(resultArray, conn);
num+=createUser;
}else{
break;
}
}
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
conn.close();
} catch (SQLException throwables) {
throwables.printStackTrace();
}
}
SDK.getLogAPI().consoleInfo("本次共同步人员数据num" + num+"");
SDK.getLogAPI().consoleInfo("本次共同步人员数据count" + count+"");
return "";
}
/**
* 新增或更新人员
*
* @param resultArray
* @param conn
*/
public static int createUser(JSONArray resultArray, Connection conn) {
int count = 0;
for (Object o : resultArray) {
JSONObject resultJson = JSONObject.parseObject(o.toString());
String status = resultJson.getString("STATUS");//人员状态编码
String emp_id = resultJson.getString("EMP_ID");//员工编号
if(UtilString.isEmpty(getUserId(emp_id, conn))){
continue;
}
String emp_name = resultJson.getString("EMP_NAME");//员工姓名
String business_unit = resultJson.getString("BUSINESS_UNIT");//事业部id
String bu_name = resultJson.getString("BU_NAME");//事业部名称
String dept_id = resultJson.getString("DEPT_ID");//部门id
String status_name = resultJson.getString("STATUS_NAME");//人员状态编码
String sex = resultJson.getString("SEX");//性别编码
String sex_name = resultJson.getString("SEX_NAME");//性别描述
String phone = resultJson.getString("PHONE");//移动电话
String email_addr = resultJson.getString("EMAIL_ADDR");//邮箱
String job_class = resultJson.getString("JOB_CLASS");//职级类别编码
String job_class_name = resultJson.getString("JOB_CLASS_NAME");//职级类别描述
String job_family = resultJson.getString("JOB_FAMILY");//职级编码
String job_family_name = resultJson.getString("JOB_FAMILY_NAME");//职级描述
String job_code = resultJson.getString("JOB_CODE");//职务id
String job_name = resultJson.getString("JOB_NAME");//职务描述
String position = resultJson.getString("POSITION");//新职务ID
String position_name = resultJson.getString("POSITION_NAME");//新职务描述
String supervisor_id = resultJson.getString("SUPERVISOR_ID");//直接上级id
Map<String,Object> map =new HashMap<String,Object>();
map.put("mobile",phone);
map.put("position_layer",job_class);
map.put("positionNo",position);
map.put("positionName",position_name);
map.put("ext1",job_family);
map.put("ext2",job_family_name);
map.put("ext3",business_unit);
map.put("ext4",bu_name);
map.put("reportTo",supervisor_id);
String sql = "SELECT ID FROM ORGROLE WHERE ROLENO = '"+position+"'";
List<RowMap> maps = DBSql.getMaps(sql);
if(UtilString.isEmpty(job_class)) {
job_class = "";
}
if(UtilString.isEmpty(supervisor_id)) {
supervisor_id = "";
}
String updateUserSql = "UPDATE ORGUSER SET POSITION_LAYER = ? ,EXT1 = ? ,EXT2 = ? ,EXT3 = ? ,EXT4 = ? ,REPORTTO = ? WHERE USERID = ?";
count+=DBSql.update(conn,updateUserSql,new Object[]{job_class,job_family,job_family_name,business_unit,bu_name,supervisor_id,emp_id});
}
return count;
}
/**
* 用户是否存在
* @return
*/
public static String getUserId(String emp_id, Connection conn){
String selectUserSql = " SELECT ID FROM BO_EU_ORG_USER WHERE EMP_ID = ? ";
String userId = DBSql.getString(conn, selectUserSql, new Object[]{emp_id});
return userId;
}
/**
* 根据外部Id获取部门Id
*
* @return
*/
public static String getDeptIdByOuterId(String org_code, Connection conn) {
String selectDeptSql = " SELECT ID FROM ORGDEPARTMENT WHERE OUTERID = ? ";
String currentId = DBSql.getString(conn, selectDeptSql, new Object[]{org_code});
return currentId;
}
/**
* 注销或激活用户
* @return
*/
public static void disabledOrActiveUser(String userId,String status){
if(status.equals("A")){ //有效员工
SDK.getORGAPI().activateUser(userId);
}else if(status.equals("I")){//无效员工
SDK.getORGAPI().disabledUser(userId);
}
}
}

View File

@ -0,0 +1,99 @@
package com.yili.test;
import java.io.UnsupportedEncodingException;
import java.util.HashMap;
import org.apache.commons.codec.binary.Base64;
public class App {
// Basic testClient:qwertyuio0987654rfg :: Basic ???
static String clientId = "testClient";
static String clientSecret = "1234567890";
static String redirect_uri = "http://10.119.254.49:33018/";
public static void main(String[] args) {
// System.out.println("--startup--------");
// [1] 第一个网址放在浏览器中打开登录然后拿url中的code
// String firstURL="http://cs.idm.yili.com:7777/ms_oauth/oauth2/endpoints/oauthservice/authorize?client_id="+clientId+"&redirect_uri="+redirect_uri+"&response_type=code&scope=UserProfile.me";
// System.out.println(firstURL);
// [2] code拿来调用第二个接口
// =======================================================================
//String code = "eyJhbGciOiJSUzUxMiIsInR5cCI6IkpXVCIsIng1dCI6IkNEanJCRy03d0hKZnZpNURzTm9OeGQ1TE5iWSIsImtpZCI6Im9yYWtleSJ9.eyJvcmFjbGUub2F1dGgucmVkaXJlY3QtdXJpIjoiaHR0cDovLzEwLjExOS4yMS4yMzE6MzE4NjIvZWNzLWNvbnNvbGUiLCJzdWIiOm51bGwsIm9yYWNsZS5vYXV0aC51c2VyX29yaWdpbl9pZF90eXBlIjoiTERBUF9VSUQiLCJvcmFjbGUub2F1dGgudXNlcl9vcmlnaW5faWQiOiIwMDMxODY5NiIsImlzcyI6Ind3dy5vcmFjbGUuZXhhbXBsZS5jb20iLCJvcmFjbGUub2F1dGguc3ZjX3BfbiI6Ik9BdXRoU2VydmljZVByb2ZpbGUiLCJpYXQiOjE2Mzk0OTMwMTgsIm9yYWNsZS5vYXV0aC50a19jb250ZXh0IjoiYXpjIiwiZXhwIjoxNjM5NDkzOTE4LCJwcm4iOm51bGwsImp0aSI6IjEwMzU0YjYxLTczZmYtNDAzMy04Y2U4LTcyZTFjYjFkYTg3YSIsIm9yYWNsZS5vYXV0aC5zY29wZSI6IlVzZXJQcm9maWxlLm1lIiwib3JhY2xlLm9hdXRoLmNsaWVudF9vcmlnaW5faWQiOiJNQU1DQ2xpZW50IiwidXNlci50ZW5hbnQubmFtZSI6IkRlZmF1bHREb21haW4iLCJvcmFjbGUub2F1dGguaWRfZF9pZCI6IjEyMzQ1Njc4LTEyMzQtMTIzNC0xMjM0LTEyMzQ1Njc4OTAxMiJ9.WYCIAKUIJS1LcWzDn4tfOCts78-grCHpCye4PL_gTTXamm1r2nnOdJKAZieCOdLeBhTbjyDRFldrruRFIkiqnU9Tp3RRkFXOB7vfintBK2VDpBz9_VJX3FgzoQRCGUOcX6nZu9_vBmgKu1yjJMaz6Vq13WHPFG1XLj1ttKlEBBY";
String code = "eyJhbGciOiJSUzUxMiIsInR5cCI6IkpXVCIsIng1dCI6IkNEanJCRy03d0hKZnZpNURzTm9OeGQ1TE5iWSIsImtpZCI6Im9yYWtleSJ9.eyJvcmFjbGUub2F1dGgucmVkaXJlY3QtdXJpIjoiaHR0cDovLzEwLjExOS4yNTQuNDk6MzMwMTgvIiwic3ViIjpudWxsLCJvcmFjbGUub2F1dGgudXNlcl9vcmlnaW5faWRfdHlwZSI6IkxEQVBfVUlEIiwib3JhY2xlLm9hdXRoLnVzZXJfb3JpZ2luX2lkIjoiMDAzMTg2OTYiLCJpc3MiOiJ3d3cub3JhY2xlLmV4YW1wbGUuY29tIiwib3JhY2xlLm9hdXRoLnN2Y19wX24iOiJPQXV0aFNlcnZpY2VQcm9maWxlIiwiaWF0IjoxNjU3Nzc4NjkxLCJvcmFjbGUub2F1dGgudGtfY29udGV4dCI6ImF6YyIsImV4cCI6MTY1Nzc3OTU5MSwicHJuIjpudWxsLCJqdGkiOiI2N2UyMDgwNy0xZGFiLTRhNmEtOTM4My0yZjY4YWU1ZTM3MzciLCJvcmFjbGUub2F1dGguc2NvcGUiOiJVc2VyUHJvZmlsZS5tZSIsIm9yYWNsZS5vYXV0aC5jbGllbnRfb3JpZ2luX2lkIjoiZTQ4M2MwZTVmODEyNDU2MzliOWIwYzk0MGNhODFlODAiLCJ1c2VyLnRlbmFudC5uYW1lIjoiRGVmYXVsdERvbWFpbiIsIm9yYWNsZS5vYXV0aC5pZF9kX2lkIjoiMTIzNDU2NzgtMTIzNC0xMjM0LTEyMzQtMTIzNDU2Nzg5MDEyIn0.UFt7tPu-DL3fh1WhbjwuxwjkuvOpA1bDDLAiGXHx9-32JV-fv6ExeQ6GWXCjbgIVWxmnSzhGdqQuXIixsY6rN-VjXwloOoSE4tVsbxbO4imbHvaOGAjyvrWiKI3cLTokTK1In-kWr1FkkYq4_PcOgTi6PC8GYdH2_zY6_KBY1WIvyqhcVffBVLAN7yKtvjb4iT9ILYxSYq8LfZdyKJ9nwgoDH4qeOsmqsELXvny0";
getTokens(redirect_uri, code);
// [2] - 的结果
/*
* {"expires_in":3600,"token_type":"Bearer",
* "access_token":"eyJhbGciOiJSUzUxMiIsInR5cCI6IkpXVCIsIng1dCI6IkNEanJCRy03d0hKZnZpNURzTm9OeGQ1TE5iWSIsImtpZCI6Im9yYWtleSJ9.eyJzdWIiOiIwMDMxODY5NiIsIm9yYWNsZS5vYXV0aC51c2VyX29yaWdpbl9pZF90eXBlIjoiTERBUF9VSUQiLCJvcmFjbGUub2F1dGgudXNlcl9vcmlnaW5faWQiOiIwMDMxODY5NiIsImlzcyI6Ind3dy5vcmFjbGUuZXhhbXBsZS5jb20iLCJvcmFjbGUub2F1dGguc3ZjX3BfbiI6Ik9BdXRoU2VydmljZVByb2ZpbGUiLCJpYXQiOjE2Mzk0OTMwNjgsIm9yYWNsZS5vYXV0aC5wcm4uaWRfdHlwZSI6IkxEQVBfVUlEIiwib3JhY2xlLm9hdXRoLnRrX2NvbnRleHQiOiJyZXNvdXJjZV9hY2Nlc3NfdGsiLCJleHAiOjE2Mzk0OTY2NjgsInBybiI6IjAwMzE4Njk2IiwianRpIjoiODQ2NWUwNGYtZmUwOS00M2ZjLTkwNzYtY2YyZTg5NWY3YjUzIiwib3JhY2xlLm9hdXRoLmNsaWVudF9vcmlnaW5faWQiOiJNQU1DQ2xpZW50Iiwib3JhY2xlLm9hdXRoLnNjb3BlIjoiVXNlclByb2ZpbGUubWUiLCJ1c2VyLnRlbmFudC5uYW1lIjoiRGVmYXVsdERvbWFpbiIsIm9yYWNsZS5vYXV0aC5pZF9kX2lkIjoiMTIzNDU2NzgtMTIzNC0xMjM0LTEyMzQtMTIzNDU2Nzg5MDEyIn0.hXSM1SSVcgqrldfCUK0tEz_TwbbeMvyE1qTXz8qHV3CWMuvVPbVTdaywr-fLcJxM115X3a2LMLFGdSZegS1EjVlsuIIpX0Nknfp3zrXNe_uzaJU_YeubnSMum-GER4Wlh9Yu64e8GfjZdmD9IOVr_dl4Z8R-moXF7a4VV4fgPxA"}
* */
//======================================================================
// [4] 获取上面 access_token 传给第4个接口
//String token = "eyJhbGciOiJSUzUxMiIsInR5cCI6IkpXVCIsIng1dCI6IkNEanJCRy03d0hKZnZpNURzTm9OeGQ1TE5iWSIsImtpZCI6Im9yYWtleSJ9.eyJzdWIiOiIwMDMxODY5NiIsIm9yYWNsZS5vYXV0aC51c2VyX29yaWdpbl9pZF90eXBlIjoiTERBUF9VSUQiLCJvcmFjbGUub2F1dGgudXNlcl9vcmlnaW5faWQiOiIwMDMxODY5NiIsImlzcyI6Ind3dy5vcmFjbGUuZXhhbXBsZS5jb20iLCJvcmFjbGUub2F1dGguc3ZjX3BfbiI6Ik9BdXRoU2VydmljZVByb2ZpbGUiLCJpYXQiOjE2Mzk0OTMwNjgsIm9yYWNsZS5vYXV0aC5wcm4uaWRfdHlwZSI6IkxEQVBfVUlEIiwib3JhY2xlLm9hdXRoLnRrX2NvbnRleHQiOiJyZXNvdXJjZV9hY2Nlc3NfdGsiLCJleHAiOjE2Mzk0OTY2NjgsInBybiI6IjAwMzE4Njk2IiwianRpIjoiODQ2NWUwNGYtZmUwOS00M2ZjLTkwNzYtY2YyZTg5NWY3YjUzIiwib3JhY2xlLm9hdXRoLmNsaWVudF9vcmlnaW5faWQiOiJNQU1DQ2xpZW50Iiwib3JhY2xlLm9hdXRoLnNjb3BlIjoiVXNlclByb2ZpbGUubWUiLCJ1c2VyLnRlbmFudC5uYW1lIjoiRGVmYXVsdERvbWFpbiIsIm9yYWNsZS5vYXV0aC5pZF9kX2lkIjoiMTIzNDU2NzgtMTIzNC0xMjM0LTEyMzQtMTIzNDU2Nzg5MDEyIn0.hXSM1SSVcgqrldfCUK0tEz_TwbbeMvyE1qTXz8qHV3CWMuvVPbVTdaywr-fLcJxM115X3a2LMLFGdSZegS1EjVlsuIIpX0Nknfp3zrXNe_uzaJU_YeubnSMum-GER4Wlh9Yu64e8GfjZdmD9IOVr_dl4Z8R-moXF7a4VV4fgPxA";
//getUserInfo(token);
/* // [4] 的结果
* {"uid":"00318696","mail":"A00318696@yili.com","employeenumber":"00318696","lastname":"王超",
* "commonname":"王超","uri":"\/ms_oauth\/resources\/userprofile\/me\/00318696"}
*/
}
// http://cs.idm.yili.com:7777/ms_oauth/oauth2/endpoints/oauthservice/tokens?redirect_uri=http://192.168.88.100:8080/ecs-console/&grant_type=authorization_code&code=
// 获取授权Token接口(authorization_code模式)
public static String getTokens(String redirect_uri, String code) {
String tokenJson = "";
String url = "http://cs.idm.yili.com:7777/ms_oauth/oauth2/endpoints/oauthservice/tokens?" + "redirect_uri="
+ redirect_uri + "&grant_type=authorization_code&code=" + code;
String authoStr = geAuthorization(clientId, clientSecret);
HashMap<String, String> HeaderMap = new HashMap();
HeaderMap.put("Content-Type", "application/x-www-form-urlencoded");
HeaderMap.put("Authorization", authoStr);
HeaderMap.put("accept", "*/*");
HeaderMap.put("connection", "Keep-Alive");
// do request
tokenJson = HttpJavaUtil.sendPost(url, "", HeaderMap);
System.out.println(tokenJson);
return tokenJson;
}
public static String getUserInfo(String token) {
String userInfoJson = "";
String url = "http://cs.idm.yili.com:7777/ms_oauth/resources/userprofile/me";
String authoStr = token;
HashMap<String, String> HeaderMap = new HashMap();
HeaderMap.put("Content-Type", "application/x-www-form-urlencoded");
HeaderMap.put("Authorization", authoStr);
HeaderMap.put("accept", "*/*");
HeaderMap.put("connection", "Keep-Alive");
// do request get
userInfoJson = HttpJavaUtil.doGet(url, HeaderMap);
System.out.println(userInfoJson);
return userInfoJson;
}
public static String geAuthorization(String clientId, String clientSecret) {
try {
byte[] key = (clientId + ":" + clientSecret).getBytes("utf-8");
String cc = new String(Base64.encodeBase64(key), "utf-8");
// String cc = new String(java.util.Base64.getEncoder().encode(key), "utf-8");
return "Basic " + cc;
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
return "";
}
}
}

View File

@ -0,0 +1,300 @@
package com.yili.test;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.util.Map;
import javax.net.ssl.HostnameVerifier;
import javax.net.ssl.HttpsURLConnection;
import javax.net.ssl.SSLSession;
import okhttp3.MediaType;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.RequestBody;
import okhttp3.Response;
public class HttpJavaUtil {
public static final String DEF_CHATSET = "UTF-8";
public static final int DEF_CONN_TIMEOUT = 30000; // 是建立连接的超时时间
public static final int DEF_READ_TIMEOUT = 30000; // 是传递数据的超时时间
public static String doGet(String httpUrl, Map<String, String> HeaderMap) {
HttpURLConnection connection = null;
InputStream is = null;
BufferedReader br = null;
String result = null;// 返回结果字符串
System.out.println(httpUrl);
try {
// 创建远程url连接对象
URL url = new URL(httpUrl);
try {
// trustAllHttpsCertificates();
} catch (Exception e) {
e.printStackTrace();
System.out.println("【异常】doGet-https-->" + e.getMessage());
}
connection = (HttpURLConnection) url.openConnection();
// 设置header
for (String key : HeaderMap.keySet()) {
connection.setRequestProperty(key, HeaderMap.get(key).toString());
}
// 设置连接方式get
connection.setRequestMethod("GET");
// 设置连接主机服务器的超时时间15000毫秒
connection.setConnectTimeout(15000);
// 设置读取远程返回的数据时间60000毫秒
connection.setReadTimeout(60000);
// 发送请求
connection.connect();
// 通过connection连接获取输入流
if (connection.getResponseCode() == 200) {
is = connection.getInputStream();
// 封装输入流is并指定字符集
br = new BufferedReader(new InputStreamReader(is, "UTF-8"));
// 存放数据
StringBuffer sbf = new StringBuffer();
String tempX = "";
while ((tempX = br.readLine()) != null) {
sbf.append(tempX);
sbf.append("\r\n");
}
result = sbf.toString();
System.out.println(result);
} else {
String line;
String message = "";
br = new BufferedReader(new InputStreamReader(connection.getErrorStream()));
StringBuffer buff = new StringBuffer();
while ((line = br.readLine()) != null) {
buff.append(line + "\n");
message += line;
}
message = buff.toString();
System.out.println(message);
}
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
// 关闭资源
if (null != br) {
try {
br.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (null != is) {
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
connection.disconnect();// 关闭远程连接
}
return result;
}
public static String doPost(String httpUrl, String BodyParam, Map<String, String> HeaderMap) {
HttpURLConnection connection = null;
InputStream is = null;
OutputStream os = null;
BufferedReader br = null;
String result = null;
try {
URL url = new URL(httpUrl);
try {
// trustAllHttpsCertificates();
} catch (Exception e) {
e.printStackTrace();
System.out.println("【异常】doPost-https-->" + e.getMessage());
}
connection = (HttpURLConnection) url.openConnection();
// 设置header
for (String key : HeaderMap.keySet()) {
connection.setRequestProperty(key, HeaderMap.get(key).toString());
}
connection.setRequestMethod("POST");
connection.setConnectTimeout(15000);
connection.setReadTimeout(60000);
connection.setDoOutput(true);
connection.setDoInput(true);
os = connection.getOutputStream();
os.write(BodyParam.getBytes());
int resCode = connection.getResponseCode();
is = connection.getInputStream();
br = new BufferedReader(new InputStreamReader(is, "UTF-8"));
StringBuffer sbf = new StringBuffer();
String temp = null;
while ((temp = br.readLine()) != null) {
sbf.append(temp);
sbf.append("\r\n");
}
result = sbf.toString();
} catch (Exception e) {
System.out.println(e.getMessage());
e.printStackTrace();
} finally {
if (null != br) {
try {
br.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (null != os) {
try {
os.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (null != is) {
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
connection.disconnect();
}
return result;
}
/**
* 信任全部https证书
*/
private static void trustAllHttpsCertificates() throws Exception {
HttpsURLConnection.setDefaultHostnameVerifier(new HostnameVerifier() {
public boolean verify(String str, SSLSession session) {
return true;
}
});
javax.net.ssl.TrustManager[] trustAllCerts = new javax.net.ssl.TrustManager[1];
javax.net.ssl.TrustManager tm = new miTM();
trustAllCerts[0] = tm;
javax.net.ssl.SSLContext sc = javax.net.ssl.SSLContext.getInstance("SSL");
sc.init(null, trustAllCerts, null);
javax.net.ssl.HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());
}
static class miTM implements javax.net.ssl.TrustManager, javax.net.ssl.X509TrustManager {
public java.security.cert.X509Certificate[] getAcceptedIssuers() {
return null;
}
public boolean isServerTrusted(java.security.cert.X509Certificate[] certs) {
return true;
}
public boolean isClientTrusted(java.security.cert.X509Certificate[] certs) {
return true;
}
public void checkServerTrusted(java.security.cert.X509Certificate[] certs, String authType)
throws java.security.cert.CertificateException {
return;
}
public void checkClientTrusted(java.security.cert.X509Certificate[] certs, String authType)
throws java.security.cert.CertificateException {
return;
}
}
public static String sendPost(String url, String param, Map<String, String> HeaderMap) {
PrintWriter out = null;
BufferedReader in = null;
String result = "";
try {
URL realUrl = new URL(url);
// 打开和URL之间的连接
URLConnection conn = realUrl.openConnection();
// 设置header
for (String key : HeaderMap.keySet()) {
conn.setRequestProperty(key, HeaderMap.get(key).toString());
}
// 发送POST请求必须设置如下两行
conn.setDoOutput(true);
conn.setDoInput(true);
// 获取URLConnection对象对应的输出流
out = new PrintWriter(conn.getOutputStream());
// 发送请求参数
out.print(param);
// flush输出流的缓冲
out.flush();
// 定义BufferedReader输入流来读取URL的响应
in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
String line;
while ((line = in.readLine()) != null) {
result += line;
}
} catch (Exception e) {
System.out.println("发送 POST 请求出现异常!" + e);
e.printStackTrace();
}
// 使用finally块来关闭输出流输入流
finally {
try {
if (out != null) {
out.close();
}
if (in != null) {
in.close();
}
} catch (IOException ex) {
ex.printStackTrace();
}
}
return result;
}
public static void tst4(String redirect_uri,String code) {
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/x-www-form-urlencoded");
RequestBody body = RequestBody.create(mediaType, "a=1");
Request request = new Request.Builder()
.url("http://cs.idm.cjlr.com:7777/ms_oauth/oauth2/endpoints/oauthservice/tokens?redirect_uri="+redirect_uri+"&grant_type=authorization_code&code="+code)
.post(body)
.addHeader("Authorization", "Basic 这里需要改改")
.addHeader("Content-Type", "application/x-www-form-urlencoded")
.addHeader("Accept", "*/*")
.addHeader("Cache-Control", "no-cache")
.addHeader("Connection", "keep-alive")
.addHeader("cache-control", "no-cache")
.build();
try {
Response response = client.newCall(request).execute();
System.out.println(response);
} catch (IOException e) {
// TODO Auto-generated catch block
System.out.println(e);
e.printStackTrace();
}
}
}

View File

@ -0,0 +1,270 @@
package com.yili.util;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import org.apache.commons.httpclient.Cookie;
import org.apache.commons.httpclient.Header;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpMethodBase;
import org.apache.commons.httpclient.HttpStatus;
import org.apache.commons.httpclient.NameValuePair;
import org.apache.commons.httpclient.methods.GetMethod;
import org.apache.commons.httpclient.methods.PostMethod;
import org.apache.commons.httpclient.methods.RequestEntity;
import org.apache.commons.httpclient.methods.StringRequestEntity;
import org.apache.commons.httpclient.params.HttpConnectionManagerParams;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
public class HttpClientUtil {
private static final Logger log = LoggerFactory.getLogger(HttpClientUtil.class);
private HttpClient client;
private HttpMethodBase httpMethod;
public HttpClientUtil(HttpMethodBase method) {
this.httpMethod = method;
this.client = new HttpClient();
this.client.getParams().setParameter("http.protocol.content-charset", "UTF-8");
}
public HttpClientUtil(String proxyHost, int proxyPort) {
this.client = null;
this.httpMethod = null;
this.client = new HttpClient();
this.client.getParams().setParameter("http.protocol.content-charset", "UTF-8");
setProxy(client, proxyHost , proxyPort);
}
public HttpClientUtil(int timeoutInMilliseconds) {
this(null);
HttpConnectionManagerParams ps = this.client.getHttpConnectionManager().getParams();
ps.setSoTimeout(timeoutInMilliseconds);
ps.setConnectionTimeout(timeoutInMilliseconds);
}
public void setRequestHeader(String name, String value) {
this.httpMethod.setRequestHeader(name, value);
}
public void addParameter(String name, String value) throws IllegalArgumentException {
if(name != null && value != null) {
if(this.httpMethod instanceof GetMethod) {
String q = this.httpMethod.getQueryString();
if(q == null) {
this.httpMethod.setQueryString(name + "=" + value);
} else {
this.httpMethod.setQueryString(q + "&" + name + "=" + value);
}
} else if(this.httpMethod instanceof PostMethod) {
((PostMethod)this.httpMethod).addParameter(name, value);
}
} else {
throw new IllegalArgumentException("Arguments to addParameter(String, String) cannot be null");
}
}
public static PostMethod buildPostMethod(String server, String uri, NameValuePair[] pairs) {
PostMethod postMethod = new PostMethod(server+ uri);
postMethod.addParameters(pairs);
postMethod.setRequestHeader("Connection","close");
postMethod.setRequestHeader("charset","UTF-8");
return postMethod;
}
public static JSONObject postSend(String server, String uri, NameValuePair[] pairs) throws IOException {
PostMethod postMethod = HttpClientUtil.buildPostMethod(server, uri,pairs);
HttpClient httpClient = new HttpClient();
httpClient.executeMethod(postMethod);
if (postMethod.getStatusCode() == HttpStatus.SC_OK){
String responseBody = HttpClientUtil.getResponseBodyAsString(postMethod,"UTF-8");
return JSON.parseObject(responseBody);
}
return new JSONObject();
}
public static String getResponseBodyAsString(HttpMethodBase httpMethod, String contentCharset) throws IOException {
InputStream in = httpMethod.getResponseBodyAsStream();
ByteArrayOutputStream out = new ByteArrayOutputStream(4096);
byte[] buffer = new byte[4096];
int len;
while((len = in.read(buffer)) > 0) {
out.write(buffer, 0, len);
}
out.close();
byte[] data = out.toByteArray();
return contentCharset != null?new String(data, contentCharset):new String(data);
}
public static String buildQueryString(Map<String, String> params) {
StringBuffer postParam = new StringBuffer();
Set<Map.Entry<String, String>> entrySet = params.entrySet();
for (Map.Entry<String, String> entry : entrySet) {
postParam.append(entry.getKey());
postParam.append("=");
postParam.append(entry.getValue());
postParam.append("&");
}
return postParam.substring(0, postParam.lastIndexOf("&"));
}
public void setPostRequestBody(String data) throws UnsupportedEncodingException {
setPostRequestBody(data, "text/plain","UTF-8");
}
public void setPostRequestBody(String data,String contentType,String charset) throws UnsupportedEncodingException {
if(this.httpMethod instanceof PostMethod) {
PostMethod httpMethod = (PostMethod) this.httpMethod;
RequestEntity entity = new StringRequestEntity(data, contentType,charset);
httpMethod.setRequestEntity(entity);
}
}
public int send() throws IOException {
this.httpMethod.setRequestHeader("Connection", "close");
return this.client.executeMethod(this.httpMethod);
}
public Map<String, String> getResponseHeader() {
Map<String, String> r = new HashMap();
Header[] h = this.httpMethod.getResponseHeaders();
Header[] var3 = h;
int var4 = h.length;
for(int var5 = 0; var5 < var4; ++var5) {
Header header = var3[var5];
r.put(header.getName(), header.getValue());
}
return r;
}
public Map<String, String> getCookies() {
Map<String, String> r = new HashMap();
Cookie[] cs = this.client.getState().getCookies();
Cookie[] var3 = cs;
int var4 = cs.length;
for(int var5 = 0; var5 < var4; ++var5) {
Cookie c = var3[var5];
r.put(c.getName(), c.getValue());
}
return r;
}
public InputStream getResponseBodyAsStream() throws IOException {
return this.httpMethod.getResponseBodyAsStream();
}
public String getResponseBodyAsString(String contentCharset) throws IOException {
InputStream instream = this.httpMethod.getResponseBodyAsStream();
ByteArrayOutputStream outstream = new ByteArrayOutputStream(4096);
byte[] buffer = new byte[4096];
int len;
while((len = instream.read(buffer)) > 0) {
outstream.write(buffer, 0, len);
}
outstream.close();
byte[] rawdata = outstream.toByteArray();
return contentCharset != null?new String(rawdata, contentCharset):new String(rawdata);
}
public void close() {
if(this.httpMethod != null) {
try {
this.httpMethod.releaseConnection();
} catch (Exception var2) {
;
}
}
}
private static void setProxy(HttpClient client, String proxyHost, int proxyPort ) {
if(StringUtils.isNotBlank(proxyHost)) {
if(proxyPort > 0) {
client.getHostConfiguration().setProxy(proxyHost, proxyPort);
}
}
}
public static String getContent(String url, String proxyHost, int proxyPort ) {
if(StringUtils.isNotBlank(url)) {
HttpClient client = new HttpClient();
GetMethod get = new GetMethod(url);
setProxy(client,proxyHost,proxyPort);
get.setRequestHeader("Connection", "close");
String var3;
try {
client.executeMethod(get);
var3 = get.getResponseBodyAsString();
} catch (Exception var7) {
log.error("", var7);
return null;
} finally {
get.releaseConnection();
}
return var3;
} else {
return null;
}
}
public static String getContent(String url) {
if(StringUtils.isNotBlank(url)) {
HttpClient client = new HttpClient();
GetMethod get = new GetMethod(url);
get.setRequestHeader("Connection", "close");
String var3;
try {
client.executeMethod(get);
var3 = get.getResponseBodyAsString();
} catch (Exception var7) {
log.error("", var7);
return null;
} finally {
get.releaseConnection();
}
return var3;
} else {
return null;
}
}
public static Header[] getContentHeader(String url) {
if(StringUtils.isNotBlank(url)) {
HttpClient client = new HttpClient();
GetMethod get = new GetMethod(url);
get.setRequestHeader("Connection", "close");
Header[] var3;
try {
client.executeMethod(get);
var3 = get.getResponseHeaders();
} catch (Exception var7) {
log.error("", var7);
return null;
} finally {
get.releaseConnection();
}
return var3;
} else {
return null;
}
}
}

View File

@ -0,0 +1,53 @@
package com.yili.util;
import java.nio.charset.Charset;
import org.apache.http.HttpEntity;
import org.apache.http.client.config.RequestConfig;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.util.EntityUtils;
/**
* @PackageName: com.awspaas.user.apps.yili.integration.util
* @ClassName: UtilUrl
* @author: yujh
* @date: 2022/5/18 21:41
*/
public class UtilUrl {
//使用SOAP1.1发送消息
public static String doPostSoap(String postUrl, String soapXml, String soapAction) {
String retStr = "";
// 创建HttpClientBuilder
HttpClientBuilder httpClientBuilder = HttpClientBuilder.create();
// HttpClient
CloseableHttpClient closeableHttpClient = httpClientBuilder.build();
HttpPost httpPost = new HttpPost(postUrl);
// 设置请求和传输超时时间
RequestConfig requestConfig = RequestConfig.custom().setSocketTimeout(6000)
.setConnectTimeout(6000).build();
httpPost.setConfig(requestConfig);
try {
httpPost.setHeader("Content-Type", "text/xml;charset=UTF-8");
httpPost.setHeader("SOAPAction", soapAction);
StringEntity data = new StringEntity(soapXml, Charset.forName("UTF-8"));
httpPost.setEntity(data);
CloseableHttpResponse response = closeableHttpClient.execute(httpPost);
HttpEntity httpEntity = response.getEntity();
if (httpEntity != null) {
// 打印响应内容
retStr = EntityUtils.toString(httpEntity, "UTF-8");
}
// 释放资源
closeableHttpClient.close();
} catch (Exception e) {
e.printStackTrace();
}
return retStr;
}
}

View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8"?>
<attributes type="customer">
<attribute key="auditor" title="审核人" type="string" value="" ref="" readonly="false" groupPath="process_model" scope="%" isValid="true" desc="审核人" isRequired="false"/>
<attribute key="reviewer" title="复核人" type="string" value="" ref="" readonly="false" groupPath="process_model" scope="%" isValid="true" desc="复核人" isRequired="false"/>
<attribute key="approver" title="审批人" type="string" value="" ref="" readonly="false" groupPath="process_model" scope="%" isValid="true" desc="审批人" isRequired="false"/>
<attribute key="application" title="适用范围" type="string" value="" ref="" readonly="false" groupPath="process_model" scope="%" isValid="true"/>
<attribute key="file_number" title="文件编码" type="string" value="" ref="" readonly="false" groupPath="process_model" scope="%" isValid="true" desc="文件编码" isRequired="false"/>
<attribute key="Process_Architecture_L1" title="流程架构L1" type="string" value="" ref="" readonly="false" groupPath="process_model" scope="%" isValid="true" desc="22" isRequired="false"/>
<attribute key="Process_Architecture_L2" title="流程架构L2" type="string" value="" ref="" readonly="false" groupPath="process_model" scope="%" isValid="true" desc="流程架构l2" isRequired="false"/>
<attribute key="Process_Architecture_L3" title="流程架构L3" type="string" value="" ref="" readonly="false" groupPath="process_model" scope="%" isValid="true" desc="流程架构L3" isRequired="false"/>
<attribute key="Contents_and_reasons_for_revision" title="修订内容及理由" type="string" value="" ref="" readonly="false" groupPath="process_model" scope="%" isValid="true"/>
<attribute key="ARIS" title="ARIS地址" type="string" value="" ref="" readonly="false" groupPath="organization" scope="%" isValid="true"/>
<attribute key="P_versions" title="版本" type="string" value="" ref="" readonly="false" groupPath="process_model" scope="%" isValid="true" desc="版本" isRequired="true"/>
<attribute key="Drafted_and_revised_by" title="拟制/修订人" type="string" value="" ref="" readonly="false" groupPath="process_model" scope="%" isValid="true" desc="拟制修订人" isRequired="true"/>
<attribute key="T_supplementary_articles" title="附则" type="string" value="" ref="" readonly="false" groupPath="process_model" scope="%" isValid="true"/>
<attribute key="goal" title="目的" type="string" value="" ref="" readonly="false" groupPath="process_model" scope="%" isValid="true" desc="1" isRequired="true"/>
<attribute key="activity_number" title="活动序号" type="string" value="" ref="" readonly="false" groupPath="baseAttribute" scope="*" isValid="true"/>
<attribute key="Process_performance_metrics" title="流程绩效" type="relation" value="" ref="{&quot;method&quot;:&quot;control.kpi&quot;,&quot;type&quot;:&quot;shape&quot;,&quot;multiple&quot;:true}" readonly="true" groupPath="process_model" scope="%" isValid="true" desc="流程绩效" isRequired="false"/>
<attribute key="activity_description" title="活动描述" type="textarea" value="" ref="" readonly="false" groupPath="baseAttribute" scope="*" isValid="true" desc="活动描述" isRequired="true"/>
<attribute key="output" title="输出" type="textarea" value="" ref="" readonly="false" groupPath="baseAttribute" scope="*" isValid="true"/>
<attribute key="R_relevant_flies" title="相关文件" type="relation" value="" ref="{&quot;method&quot;:&quot;process&quot;,&quot;type&quot;:&quot;file&quot;,&quot;multiple&quot;:true}" readonly="true" groupPath="process_model" scope="%" isValid="true" desc="相关文件" isRequired="false"/>
<attribute key="support_files" title="支持文件" type="relation" value="" ref="{&quot;method&quot;:&quot;process&quot;,&quot;type&quot;:&quot;file&quot;,&quot;multiple&quot;:true}" readonly="true" groupPath="process_model" scope="%" isValid="true" desc="支持文件" isRequired="false"/>
<attribute key="relevant_flies" title="相关知识" type="link" value="" desc="相关知识" isRequired="false" ref="" readonly="false" groupPath="process_model" scope="%" isValid="true"/>
<attribute key="input" title="输入" type="textarea" value="" desc="输入" isRequired="false" ref="" readonly="false" groupPath="baseAttribute" scope="*" isValid="true"/>
<attribute key="relevant_demand" title="相关要求" type="relation" value="" desc="相关要求" isRequired="false" ref="{&quot;method&quot;:&quot;itsystem&quot;,&quot;type&quot;:&quot;shape&quot;,&quot;multiple&quot;:false,&quot;value&quot;:&quot;&quot;}" readonly="true" groupPath="baseAttribute" scope="*" isValid="false"/>
<attribute key="post" title="岗位" type="relation" value="" desc="岗位" isRequired="false" ref="{&quot;method&quot;:&quot;org.normal&quot;,&quot;type&quot;:&quot;shapeAndFile&quot;,&quot;multiple&quot;:true}" readonly="true" groupPath="baseAttribute" scope="%,*" isValid="true"/>
<attribute key="role" title="角色" type="relation" value="" desc="角色" isRequired="false" ref="{&quot;method&quot;:&quot;org.role&quot;,&quot;type&quot;:&quot;shape&quot;,&quot;multiple&quot;:false}" readonly="true" groupPath="baseAttribute" scope="*" isValid="true"/>
<attribute key="term" title="术语" type="table" value="" desc="术语" isRequired="false" ref="{&quot;firstColumn&quot;:&quot;术语&quot;,&quot;secondColumn&quot;:&quot;说明&quot;}" readonly="false" groupPath="process_model" scope="%" isValid="true"/>
<attribute key="information_systems" title="信息系统" type="relation" value="" desc="信息系统" isRequired="true" ref="{&quot;method&quot;:&quot;itsystem.normal&quot;,&quot;type&quot;:&quot;shape&quot;,&quot;multiple&quot;:false}" readonly="true" groupPath="baseAttribute" scope="*" isValid="true"/>
<attribute key="Drafted_and_revised_date" title="拟制/修订日期" type="DateTimePicker" value="" desc="拟制/修订日期" isRequired="true" ref="" readonly="false" groupPath="process_model" scope="%" isValid="true"/>
<attribute key="effective_date" title="生效时间" type="DateTimePicker" value="" desc="生效时间" isRequired="false" ref="" readonly="false" groupPath="process_model" scope="%" isValid="true"/>
<attribute key="Issuing_department" title="发布部门" type="awsorg" value="" desc="发布部门" isRequired="false" ref="{&quot;scope&quot;:[&quot;department&quot;],&quot;multiple&quot;:false}" readonly="true" groupPath="process_model" scope="%" isValid="true"/>
<attribute key="Process_owner" title="流程负责人" type="awsorg" value="" desc="流程负责人" isRequired="false" ref="{&quot;scope&quot;:[&quot;user&quot;],&quot;multiple&quot;:false}" readonly="true" groupPath="process_model" scope="%" isValid="true"/>
<attribute key="lead_process" title="前置流程" type="relation" value="" desc="前置流程" isRequired="true" ref="{&quot;method&quot;:&quot;process&quot;,&quot;type&quot;:&quot;file&quot;,&quot;multiple&quot;:false}" readonly="true" groupPath="process_model" scope="%" isValid="true"/>
<attribute key="TEST1" title="测试日期" type="DateTimePicker" value="" desc="测试日期" isRequired="false" ref="" readonly="false" groupPath="baseAttribute" scope="%,*" isValid="true"/>
<attribute key="TEST2" title="测试表格" type="table" value="" desc="测试表格" isRequired="false" ref="{&quot;firstColumn&quot;:&quot;测试表格1&quot;,&quot;secondColumn&quot;:&quot;测试表格2&quot;}" readonly="false" groupPath="baseAttribute" scope="*" isValid="true"/>
<attribute key="TEST3" title="测试模型内形状" type="relation" value="" desc="测试模型内形状" isRequired="false" ref="{&quot;method&quot;:&quot;process.epc&quot;,&quot;type&quot;:&quot;shape&quot;,&quot;multiple&quot;:false}" readonly="true" groupPath="baseAttribute" scope="*" isValid="true"/>
<attribute key="TEST4" title="测试模型文件" type="relation" value="" desc="测试模型文件" isRequired="false" ref="{&quot;method&quot;:&quot;process&quot;,&quot;type&quot;:&quot;file&quot;,&quot;multiple&quot;:false,&quot;value&quot;:&quot;&quot;}" readonly="true" groupPath="baseAttribute" scope="*" isValid="true"/>
<attribute key="TEST5" title="测试模型文件及文件内形状" type="relation" value="" desc="测试模型文件及文件内形状" isRequired="false" ref="{&quot;method&quot;:&quot;process&quot;,&quot;type&quot;:&quot;shapeAndFile&quot;,&quot;multiple&quot;:false,&quot;value&quot;:&quot;&quot;}" readonly="true" groupPath="baseAttribute" scope="*" isValid="true"/>
<attribute key="pubulish1" title="是否发布" type="string" value="" desc="是否发布" isRequired="false" ref="" readonly="false" groupPath="baseAttribute" scope="%,*" isValid="true"/>
<attribute key="readrang" title="查阅范围" type="string" value="" desc="查阅范围" isRequired="false" ref="" readonly="false" groupPath="baseAttribute" scope="%,*" isValid="true"/>
<attribute key="ARIS_process_name" title="ARIS流程名称" type="string" value="" desc="ARIS流程名称" isRequired="false" ref="" readonly="false" groupPath="process_model" scope="%" isValid="true"/>
<attribute key="organizational" title="组织/角色与职责" type="table" value="" desc="组织/角色与职责" isRequired="false" ref="{&quot;firstColumn&quot;:&quot;组织&quot;,&quot;secondColumn&quot;:&quot;职责&quot;}" readonly="false" groupPath="process_model" scope="%" isValid="true"/>
<attribute key="rear_process" title="后置流程" type="relation" value="" desc="后置流程" isRequired="true" ref="{&quot;method&quot;:&quot;process&quot;,&quot;type&quot;:&quot;file&quot;,&quot;multiple&quot;:true}" readonly="true" groupPath="process_model" scope="%" isValid="true"/>
<attribute key="aaaaa" title="测试单行2" type="textarea" value="" desc="测试单行2" isRequired="false" ref="" readonly="false" groupPath="process_model" scope="%" isValid="true"/>
</attributes>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="lib" path="lib/com.actionsoft.apps.coe.pal.batch.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/aws"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/pal"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>com.actionsoft.apps.coe.pal.batch</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="lib" path="lib/com.actionsoft.apps.coe.pal.cooperation.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/aws"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/pal"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/doc"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/event"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/fr"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/ftp"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/http"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/oauthjar"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/sso"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/xcweb"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/xls"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/xls2"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>com.actionsoft.apps.coe.pal.cooperation</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="lib" path="lib/10976337_3.jar"/>
<classpathentry kind="lib" path="lib/antlr4-runtime-4.7.2.jar"/>
<classpathentry kind="lib" path="lib/com.actionsoft.apps.coe.pal.datamigration.jar"/>
<classpathentry kind="lib" path="lib/jsoup-1.15.1.jar"/>
<classpathentry kind="lib" path="lib/JsoupXpath-2.5.1.jar"/>
<classpathentry kind="lib" path="lib/juh-4.1.2.jar"/>
<classpathentry kind="lib" path="lib/jurt-4.1.2.jar"/>
<classpathentry kind="lib" path="lib/lombok-1.18.16.jar"/>
<classpathentry kind="lib" path="lib/ridl-4.1.2.jar"/>
<classpathentry kind="lib" path="lib/slf4j-api-1.7.25.jar"/>
<classpathentry kind="lib" path="lib/unoil-4.1.2.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/aws"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/pal"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/doc"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>com.actionsoft.apps.coe.pal.datamigration</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

View File

@ -0,0 +1,749 @@
package com.actionsoft.apps.coe.pal.datamigration.util.readword;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;
import java.math.BigInteger;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
import org.apache.poi.hwpf.usermodel.Paragraph;
import org.apache.poi.xwpf.usermodel.IBodyElement;
import org.apache.poi.xwpf.usermodel.XWPFDocument;
import org.apache.poi.xwpf.usermodel.XWPFParagraph;
import org.dom4j.DocumentException;
import com.actionsoft.apps.coe.pal.datamigration.aris.mapping.ModelMappingAPIManager;
import com.actionsoft.apps.coe.pal.datamigration.constant.Constant;
import com.actionsoft.apps.coe.pal.datamigration.util.ShapeUtil;
import com.actionsoft.apps.coe.pal.datamigration.util.XMLUtil;
import com.actionsoft.apps.resource.plugin.profile.DCPluginProfile;
import com.actionsoft.bpms.server.UserContext;
import com.actionsoft.bpms.server.fs.DCContext;
import com.actionsoft.bpms.server.fs.dc.DCProfileManager;
import com.actionsoft.bpms.util.UUIDGener;
import com.actionsoft.sdk.local.SDK;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.spire.doc.Document;
import com.spire.doc.FileFormat;
import cn.jpush.api.utils.StringUtils;
/**
* @author baizp
* @Description:
* @date 2022/6/16 15:53
*/
public class WordUtilXWPF2 {
private static final String WORD_BLANK = "[\u00a0|\u3000|\u0020|\b|\t]";
/**
* word的它自己造换行符 要换成string的换行符
*/
private static final String WORD_LINE_BREAK = "[\u000B|\r]";
/**
* 抽取文字时去掉不必须字符正则
*/
private static final String splitter = "[\\t|\\n|\\r|\\s+|\u00a0+]";
private static final String regexClearBeginBlank = "^" + splitter + "*|" + splitter + "*$";
public static void main(String[] args) {
String filePath = "D:/伊利集团公文处理管理办法-新.xml";
//创建实例加载xml测试文档
Document docs = new Document();
docs.loadFromFile(filePath);
//保存为Docx格式
docs.saveToFile("D:/toDocx.docx",FileFormat.Docx);
//保存为Doc格式
//docs.saveToFile("toDoc.doc",FileFormat.Doc);
JSONObject elements = null;
JSONObject shape = null;
/*props1.put("x", 130*zindex);
props1.put("y", 277);
props1.put("w", 110);
props1.put("h", 50);*/
// String filePath = "/Users/jiuyabai/Desktop/yili项目/制度样例1—伊利集团流程制度类文件管理规范1.docx";
File file = null;
try {
file = new File(filePath);
XWPFDocument doc = new XWPFDocument(new FileInputStream(filePath));
JSONArray jsonArray = getXParagraph(doc);
System.out.println("");
} catch (Exception e) {
}
//new WordUtilXWPF().importWordLibrary(elements);
}
public static JSONArray getXParagraph(XWPFDocument doc) {
JSONArray jsons = new JSONArray();
Iterator<IBodyElement> iter = doc.getBodyElementsIterator();
int count = 1;
int img = 1;
int table = 1;
while (iter.hasNext()) {
IBodyElement element = iter.next();
if (element instanceof XWPFParagraph) {
// 获取段落元素
XWPFParagraph paragraph = (XWPFParagraph) element;
Paragraph paragraph1 = (Paragraph) element;
String text = paragraph.getText();
String style = paragraph.getStyle();//标题级别
if (org.apache.commons.lang3.StringUtils.isNotEmpty(text)) {//文字
// 将word中的特有字符转化为普通的换行符空格符等
String textWithSameBlankAndBreak = text.replaceAll(WORD_BLANK, " ").replaceAll(WORD_LINE_BREAK, "\n")
.replaceAll("\n+", "\n");
// 去除word特有的不可见字符
String textClearBeginBlank = textWithSameBlankAndBreak.replaceAll(regexClearBeginBlank, "");
// 为抽取的每一个段落加上\n作为换行符标识
//System.out.println("text="+textClearBeginBlank);
//System.out.println("style="+style);
//System.out.println("------");
JSONObject json = new JSONObject();
json.put("text", text);
json.put("style", style);
json.put("index", count);
json.put("flag", "text");
jsons.add(json);
count++;
}
}
}
return jsons;
}
/**
* @param userContext
* @param elements
* @param inputStream
* @param name
* @param shapefirst
* @param plid 模型ID
* @param type 是导入还是富文本 1是导入 0是富文本
* @return
*/
public JSONObject rewritContent(UserContext userContext, JSONObject elements, InputStream inputStream, String name, JSONObject shapefirst, String plid, int type) {
//File file = null;
int count = 0;
List<String> failTitleList = new ArrayList<>();
StringBuilder richSbuild = new StringBuilder();
String filePath = "C:/伊利集团公文处理管理办法-新.xml";
try {
File file = new File(filePath);
//elements.clear();
/*
* //创建实例加载xml测试文档 Document docs = new Document(); docs.loadFromFile(filePath);
*
* //保存为Docx格式 docs.saveToFile("toDocx.docx",FileFormat.Docx);
*
* //保存为Doc格式 docs.saveToFile("toDoc.doc",FileFormat.Doc);
*/
System.err.println("1111");
XWPFDocument doc = new XWPFDocument(inputStream);
JSONArray onlinedata = new JSONArray();
if (shapefirst == null || shapefirst.size() == 0) {
JSONObject shapeze = ShapeUtil.getProcessShapeDefinitionByName("control.policy", "regulation");
String shapeIdz = UUIDGener.getObjectId();
shapeze.put("text", name);//不生效
shapeze.put("level", 0);
JSONObject props1 = shapeze.getJSONObject("props");// 位置大小
shapeze.put("id", shapeIdz);
props1.put("x", 100);
props1.put("y", 277);
props1.put("w", 110);
props1.put("h", 50);
props1.put("zindex", 0);
shapeze.put("next", true);
elements.put(shapeIdz, shapeze);
shapeze.put("p", 0);
onlinedata.add(shapeze);
} else {
elements.put(shapefirst.getString("id"), shapefirst);
shapefirst.put("next", true);
shapefirst.put("p", 0);
onlinedata.add(shapefirst);
}
//获取段落
List<XWPFParagraph> paras = doc.getParagraphs();
//级别依次
//记录x横向的位置
int x = 1;
//记录y轴的位置
int y = 1;
//记录上次层级
int lastindex = 0;
boolean isfirst = true;
//所以条数
int countall = 0;
//上级节点是否已有子节点
boolean hasnext = false;
//内容的所有数据
StringBuilder strb = new StringBuilder();
//记录这条线上的所有节点 顺序就是层级
//List<JSONObject> onlinedata = new ArrayList<JSONObject>();
boolean lastislast = false;
XWPFDocument newfile = new XWPFDocument();
boolean isend = false;
boolean isstart = true;
for (XWPFParagraph para : paras) {
BigInteger numlevel = para.getNumIlvl();
countall += 1;
//处理富文本的情况
if (shapefirst != null && type == 0) {
isstart = false;
}
if ("内容**".equals(para.getParagraphText() ) && isstart ){//&& numlevel == null && isstart) {
count++;
isstart = false;
continue;
}
if (isstart) {
continue;
}
if (!para.getParagraphText().isEmpty()) {
if (para.getParagraphText().matches("附件\\d{1,}")) {
isend = true;
}
XWPFParagraph tmpp = newfile.createParagraph();
WordCreatFile.copyAllRunsToAnotherParagraph(para, tmpp);
}
if (isend) {
continue;
}
hasnext = false;
JSONObject shap = new JSONObject();
String leveltext = para.getNumLevelText();
String titleLvl = getTitleLvl(doc, para);//获取段落级别
//System.out.println("numlevel" + numlevel + "======leveltext=====" + leveltext + "=====获取到的级别为=====" + titleLvl + " =======内容为=====" + para.getText());
//System.out.println("=====当前level为" + (numlevel != null ? numlevel.intValue() : "") + "=====上一节点层级为" + lastindex + " ");
//标题级别
if (numlevel != null && numlevel.intValue() > 0) {
int nowlevel = numlevel.intValue();
//如果换层级了 就清空后面的数据
if ((nowlevel < lastindex || lastindex == 0) && onlinedata.size() >= (nowlevel + 1)) {
// System.out.println("进行数据清理");
JSONArray tmp = new JSONArray();
for (int i = 0; i <= nowlevel; i++) {
tmp.add(onlinedata.getJSONObject(i));
}
onlinedata = tmp;
}
lastislast = false;
String shapeId1 = UUIDGener.getObjectId();
int pnode = lastindex;
boolean issamelevel = false;
//如果是同级需要找到父节点
if (lastindex == nowlevel) {
JSONObject tmpshap1 = onlinedata.getJSONObject(lastindex);
pnode = tmpshap1.getInteger("p");
x = 0;
} else {
if (nowlevel > lastindex && (lastindex != 0 || isfirst)) {
x = 1;
} else {
x = 0;
}
/**
* 如果不是同级 需要找到同级
*/
if ((onlinedata.size() - 1) >= nowlevel && onlinedata.get(nowlevel) != null) {
JSONObject tmpshap1 = onlinedata.getJSONObject(nowlevel);
pnode = tmpshap1.getInteger("p");
lastindex = nowlevel;
}
/**
* 找上一级
*/
if (onlinedata.size() == nowlevel && lastindex == 0) {
lastindex = nowlevel - 1;
JSONObject tmpshap1 = onlinedata.getJSONObject(lastindex);
pnode = lastindex;
hasnext = tmpshap1.getBoolean("next");
x = 1;
}
}
isfirst = false;
//如果是父节点新增则要父节点的节点
JSONObject tmpshap = onlinedata.getJSONObject(lastindex);
// System.out.println("======获取上一节点位置为:" + lastindex + " ====节点内容为:" + tmpshap.getString("text"));
int len = para.getParagraphText().length() / 8 - 2;
/**
* 计算y
*/
if (nowlevel <= lastindex || hasnext) {
y += 1;
}
shap = getSharp(x, y, countall, len, tmpshap, para.getParagraphText(),"item2");
shap.put("id", shapeId1);
shap.put("text", getShowText(para.getParagraphText()));
shap.put("level", nowlevel);
shap.put("p", pnode);
elements.put(shapeId1, shap);
//拼接富文本标签
richSbuild.append(DocToHtml.getHtml(nowlevel, para.getParagraphText()));
JSONObject linkshap = onlinedata.getJSONObject(pnode);
linkshap.put("next", true);
onlinedata.set(pnode, linkshap);
craetline(elements, linkshap, shap, countall);
onlinedata.set(nowlevel, shap);
lastindex = nowlevel;
} else {
//内容
if (StringUtils.isNotEmpty(para.getParagraphText())) {
if (para.getParagraphText().contains("表单/模板适用范围")) {
System.out.println("断电测试11111");
}
//countall += 1;
//判断下一个是否同一级
boolean islast = false;
if (countall == paras.size()) {
islast = true;
}
if (countall < paras.size()) {
BigInteger nextlevel = paras.get(countall).getNumIlvl();
//后面数据为高级别文字
if (nextlevel != null && nextlevel.intValue() > 0) {
islast = true;
} else {
//后面为图片 或者表格 则要判断这之后是否有同级文字
int tmp = countall;
while (tmp < paras.size()) {
XWPFParagraph paratmp = paras.get(tmp);
BigInteger nextleveltmp = paratmp.getNumIlvl();
if (nextleveltmp == null && paratmp.getParagraphText().length() == 0) {
tmp += 1;
} else {
//有同级文字
if ((nextleveltmp == null || nextleveltmp.intValue() == 0) && paratmp.getParagraphText().length() > 0) {
islast = false;
} else {
islast = true;
}
if (paratmp.getParagraphText().matches("附件\\d{1,}")) {
islast = true;
}
if ("相关文件**".equals(para.getParagraphText())) {
//System.err.println("========相关文件========");
islast = true;
isend = true;
}
break;
}
}
}
}
if (islast && !isend) {
strb.append(para.getParagraphText());
//拼接富文本标签
richSbuild.append(DocToHtml.getHtml(0, para.getParagraphText()));
}
if (strb.length() > 0 && islast) {
if("相关文件**".equals( para.getParagraphText())) {
isend = true;
lastislast = true;
break;
}
String shapeId1 = UUIDGener.getObjectId();
//System.out.println("段落内容===" + para.getParagraphText());//段落内容
lastindex = onlinedata.size() - 1;
//获取级数
int len = strb.length() / 8 - 2;
int pnode = lastindex;
int nowlevel = 0;
if (numlevel != null) {
nowlevel = numlevel.intValue();
}
/* if (lastindex == nowlevel) {
JSONObject tmpshap1 = onlinedata.getJSONObject(lastindex);
pnode = tmpshap1.getInteger("p");
}*/
x = 1;
JSONObject tmpshap = onlinedata.getJSONObject(lastindex);
//根据上一个位置计算当前位置
shap = getSharp(x, y, countall, len, tmpshap, strb.toString(),"item1");
shap.put("id", shapeId1);
shap.put("text", getShowText(strb.toString()).replaceAll("\n", ""));
//shap.put("p", pnode);
shap.put("level", 0);
JSONObject linkshap = onlinedata.getJSONObject(lastindex);
craetline(elements, linkshap, shap, countall);
linkshap.put("next", true);
onlinedata.set(pnode, linkshap);
elements.put(shapeId1, shap);
strb = new StringBuilder();
} else {
strb.append(para.getParagraphText()).append("\n");
//拼接富文本标签
richSbuild.append(DocToHtml.getHtml(0, para.getParagraphText()));
}
lastislast = true;
lastindex = 0;
}
}
}
//将doc保存为富文本
if (type == 1) {
saveRichText(userContext, richSbuild, plid, shapefirst.getString("id"));
}
//new WordCreatFile().createFile(newfile);
} catch (Exception e) {
e.printStackTrace();
} finally {
// 会在本地产生临时文件用完后需要删除
/*if (file.exists()) {
//file.delete();
}*/
}
if(count>0) {
return elements;
}else {
return null;
}
}
public void saveRichText(UserContext userContext, StringBuilder content, String pluuid, String shapid) {
//先保存 将富文本存为附件
DCPluginProfile dcProfilepdf = DCProfileManager.getDCProfile("com.actionsoft.apps.coe.pal.datamigration", "migration");
DCContext dcContextpdf = new DCContext(userContext, dcProfilepdf, "com.actionsoft.apps.coe.pal.datamigration", pluuid, shapid, "richText.text");
InputStream sbs = new ByteArrayInputStream(content.toString().getBytes(StandardCharsets.UTF_8));
SDK.getDCAPI().write(sbs, dcContextpdf);
}
/**
* 处理超长的字符
*
* @param text
* @return
*/
public String getShowText(String text) {
if (!text.isEmpty() && text.length() >= 64) {
return text.substring(0, 64) + "...";
}
return text;
}
public JSONObject importWordLibrary(JSONObject elements) {
File file = null;
List<String> failTitleList = new ArrayList<>();
String filePath = "/Users/jiuyabai/Desktop/yili项目/制度样例1—伊利集团流程制度类文件管理规范1.docx";
try {
file = new File(filePath);
XWPFDocument doc = new XWPFDocument(new FileInputStream(filePath));
JSONObject shapeze = ShapeUtil.getProcessShapeDefinitionByName("control.policy", "regulation");
String shapeIdz = UUIDGener.getObjectId();
shapeze.put("text", "12312312312");//不生效
JSONObject props1 = shapeze.getJSONObject("props");// 位置大小
shapeze.put("id", shapeIdz);
props1.put("x", 100);
props1.put("y", 277);
props1.put("w", 110);
props1.put("h", 50);
props1.put("zindex", 0);
elements.put(shapeIdz, shapeze);
//获取段落
List<XWPFParagraph> paras = doc.getParagraphs();
int f = 0;//判断只从标题开始
int inE = 0;//判断词条库什么时候添加
int inT = 0;//判断词条库什么时候添加
int level = 1;//判断级别什么时候添加
Integer libraryTypeId = 0;//类型id
int leavone = 0;
int leatwo = 0;
int leatthee = 0;
int countall = 1;
int x = 2;
int y = 2;
int lastindex = 0;
StringBuilder strb = new StringBuilder();
JSONObject leoj = new JSONObject();
JSONObject letj = new JSONObject();
//JSONObject lethreej = new JSONObject();
for (XWPFParagraph para : paras) {
String failTitle = "";//返回错误标题
String shapeId1 = UUIDGener.getObjectId();
try {
String leveltext = para.getNumLevelText();
BigInteger numlevel = para.getNumIlvl();
String titleLvl = getTitleLvl(doc, para);//获取段落级别
System.out.println("numlevel" + numlevel + "======leveltext=====" + leveltext + "=====获取到的级别为=====" + titleLvl + " =======内容为=====" + para.getText());
if ("a5".equals(titleLvl) || "a7".equals(titleLvl) || "HTML".equals(titleLvl) || "".equals(titleLvl) || null == titleLvl) {
titleLvl = "8";
}
Date date = new Date();//时间
JSONObject shap = new JSONObject();
if (null != titleLvl && !"".equals(titleLvl) && !"8".equals(titleLvl)) {
if (f != 1 && "0".equals(titleLvl)) {//这里是去除目录只从内容标题开始
f = 1;
}
if ("0".equals(titleLvl)) {
++inT;
level = 0;
if (inT != 1) {//第一次不添加第二次到的时候说明前边的段落内容已经循环完成然后添加
//System.out.println("级别===" + titleLvl + " 数值======= " + para.getNumLevelText() + " 内容===" + para.getParagraphText());
leavone += 1;
countall += 1;
lastindex = 0;
int len = para.getParagraphText().length() / 8 - 2;
shap = getSharp(x, y, countall, len, null, "","item1");
shap.put("id", shapeId1);
shap.put("text", para.getParagraphText());
}
} else if ("1".equals(titleLvl)) {
++inE;
if (inE != 1 && level == 1) {//第一次不添加第二次到的时候说明前边的段落内容已经循环完成然后添加
//System.out.println("级别===" + titleLvl + " 数值======= " + para.getNumLevelText() + " 内容===" + para.getParagraphText());
leavone += 1;
countall += 1;
if (lastindex == 2) {
x -= 1;
y += 1;
}
if (lastindex == 3) {
x -= 2;
y += 1;
}
if (lastindex == 1) {
y += 1;
}
if (x < 2) {
x = 2;
}
lastindex = 1;
int len = para.getParagraphText().length() / 8 - 2;
shap = getSharp(x, y, countall, len, null, "","item2");
shap.put("id", shapeId1);
shap.put("text", para.getParagraphText());
leoj = shap;
craetline(elements, shapeze, shap, countall);
}
level = 1;
} else if ("2".equals(titleLvl)) {
//level = 2;
//System.out.println("级别===" + titleLvl + " 数值======= " + para.getNumLevelText() + " 内容===" + para.getParagraphText());
leatwo += 1;
countall += 1;
if (lastindex == 1) {
x += 1;
}
if (lastindex == 2) {
y += 1;
}
if (lastindex == 3) {
x -= 1;
y += 1;
}
lastindex = 2;
int len = para.getParagraphText().length() / 8 - 2;
shap = getSharp(x, y, countall, len, null, "","item2");
shap.put("id", shapeId1);
shap.put("text", para.getParagraphText());
letj = shap;
craetline(elements, leoj, shap, countall);
} else {
System.out.println("未匹配到级别");
}
} else {
//if (f != 1) {//这里是去除目录只从内容标题开始
if (StringUtils.isNotEmpty(para.getParagraphText())) {
leatthee += 1;
countall += 1;
if (strb.length() > 0 && lastindex != 3) {
JSONObject tmpshap = new JSONObject();
//System.out.println("段落内容===" + para.getParagraphText());//段落内容
if (lastindex == 3) {
y += 1;
}
if (lastindex == 2) {
x += 1;
tmpshap = letj;
}
if (lastindex == 1) {
x += 2;
tmpshap = leoj;
}
int len = para.getParagraphText().length() / 8 - 2;
shap = getSharp(x, y, countall, len, null, "","item2");
shap.put("id", shapeId1);
shap.put("text", para.getParagraphText());
craetline(elements, tmpshap, shap, countall);
strb = new StringBuilder();
}
strb.append(para.getParagraphText());
lastindex = 3;
}
// }
}
if (shap != null && !shap.isEmpty()) {
elements.put(shapeId1, shap);
}
} catch (Exception e) {
failTitleList.add(failTitle);
}
}
} catch (Exception e) {
e.printStackTrace();
} finally {
// 会在本地产生临时文件用完后需要删除
/*if (file.exists()) {
//file.delete();
}*/
}
return elements;
}
/**
* 连线处理
*
* @param zindex
* @return
*/
public void craetline(JSONObject elements, JSONObject shapef1, JSONObject shapt1, int zindex) {
JSONObject linkerObj = ModelMappingAPIManager.getInstance().getLinkerDef();
JSONObject shafp = shapef1.getJSONObject("props");
JSONObject shatp = shapt1.getJSONObject("props");
String linkerId = UUIDGener.getObjectId();
linkerObj.put("id", linkerId);
JSONObject props = linkerObj.getJSONObject("props");
props.put("zindex", zindex);// 层次
linkerObj.put("props", props);
//linkerObj.put("points", getLinkerPoints(positionModels));
JSONObject from = linkerObj.getJSONObject("from");
from.put("id", shapef1.get("id"));
from.put("angle", Constant.ANGLE_LEFT);
from.put("x", shafp.getInteger("x") + shafp.getInteger("w"));
from.put("y", shafp.getInteger("y") + 25);
linkerObj.put("from", from);
JSONObject to = linkerObj.getJSONObject("to");
to.put("id", shapt1.get("id"));
to.put("angle", Constant.ANGLE_RIGHT);
to.put("x", shatp.getInteger("x"));
to.put("y", shatp.getInteger("y") + 25);
linkerObj.put("to", to);
elements.put(linkerId, linkerObj);
}
public JSONObject getSharp(int x, int y, int zindex, int len, JSONObject lastshap, String str,String type) {
// String shapeId1 = UUIDGener.getObjectId();
JSONObject shape1 = ShapeUtil.getProcessShapeDefinitionByName("control.policy", type);
// shape1.put("id", shapeId1);
JSONArray attribute = shape1.getJSONArray("dataAttributes").getJSONObject(0).getJSONArray("attributesJsonArray");
JSONObject tmp = new JSONObject();
tmp.put("ref", "");
tmp.put("readonly", false);
tmp.put("scope", "%,*");
tmp.put("name", "描述");
tmp.put("id", "desc");
tmp.put("type", "textarea");
tmp.put("value", str);
tmp.put("groupPath", "baseAttribute");
tmp.put("key", "desc");
attribute.add(tmp);
// shape1.put("text",orgdepartmentList.get(i).getString("POSITION_NAME"));
if (lastshap.getString("text").contains("适用范围设定")) {
System.out.println("断点");
}
lastshap = lastshap.getJSONObject("props");
JSONObject props1 = shape1.getJSONObject("props");// 位置大小
if (len < 0) {
len = 0;
}
int xtmp = lastshap.getInteger("x") + (lastshap.getInteger("w") + 100) * x;
props1.put("x", xtmp);
props1.put("y", 100 * y);
//props1.put("w", 150 + (len * 35));
if("item1".equals(type)) {
props1.put("w", 385);
}else {
props1.put("w", 325);
}
props1.put("h", 50);
//System.out.println("坐标为x" + xtmp + " y:" + y);
props1.put("zindex", zindex);
return shape1;
}
/**
* Word中的大纲级别可以通过getPPr().getOutlineLvl()直接提取但需要注意Word中段落级别通过如下三种方式定义
* 1直接对段落进行定义
* 2对段落的样式进行定义
* 3对段落样式的基础样式进行定义
* 因此在通过getPPr().getOutlineLvl()提取时需要依次在如上三处读取
*
* @param doc
* @param para
* @return
*/
private String getTitleLvl(XWPFDocument doc, XWPFParagraph para) {
String titleLvl = "";
try {
//判断该段落是否设置了大纲级别
if (para.getCTP().getPPr().getOutlineLvl() != null) {
return String.valueOf(para.getCTP().getPPr().getOutlineLvl().getVal());
}
} catch (Exception e) {
}
try {
//判断该段落的样式是否设置了大纲级别
if (doc.getStyles().getStyle(para.getStyle()).getCTStyle().getPPr().getOutlineLvl() != null) {
return String.valueOf(doc.getStyles().getStyle(para.getStyle()).getCTStyle().getPPr().getOutlineLvl().getVal());
}
} catch (Exception e) {
}
try {
//判断该段落的样式的基础样式是否设置了大纲级别
if (doc.getStyles().getStyle(doc.getStyles().getStyle(para.getStyle()).getCTStyle().getBasedOn().getVal())
.getCTStyle().getPPr().getOutlineLvl() != null) {
String styleName = doc.getStyles().getStyle(para.getStyle()).getCTStyle().getBasedOn().getVal();
return String.valueOf(doc.getStyles().getStyle(styleName).getCTStyle().getPPr().getOutlineLvl().getVal());
}
} catch (Exception e) {
}
try {
if (para.getStyleID() != null) {
return para.getStyleID();
}
} catch (Exception e) {
}
return titleLvl;
}
}

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="lib" path="lib/com.actionsoft.apps.coe.pal.output.pr.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/aws"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/event"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/pal"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>com.actionsoft.apps.coe.pal.output.pr</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="lib" path="lib/com.actionsoft.apps.coe.pal.processlist.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/aws"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/pal"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="lib" path="lib/com.actionsoft.apps.coe.pal.publisher.jar"/>
<classpathentry kind="lib" path="lib/com.awspaas.user.apps.integrates.jar"/>
<classpathentry kind="lib" path="lib/com.awspaas.user.apps.yili.integration.jar"/>
<classpathentry kind="lib" path="lib/event.jar"/>
<classpathentry kind="lib" path="lib/Importdataevent.java.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/aws"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/ftp"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/oauthjar"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/pal"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/event"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>com.actionsoft.apps.coe.pal.publisher</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/aws"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/ftp"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/http"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/oauthjar"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/pal"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/doc"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>com.awspaas.user.apps.app20221008163300</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/aws"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/ftp"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/http"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/oauthjar"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/pal"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/doc"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>com.awspaas.user.apps.app20221008163300</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

View File

@ -0,0 +1,454 @@
1. 内容**
4.1 流程制度类文件分类管理
4.1.1 流程制度类文件分类
流程制度类文件分类
释义
流程架构文件
是指包含流程架构L1-L3、流程架构图、流程卡片等流程架构完整信息的描述性文件。
管理手册
是指为阐明某领域的管理目标、方针,明确管理机制和原则,全面覆盖领域管理范围的纲领性文件。
流程文件
是指对公司业务流程进行详细说明,用于帮助公司人员准确理解流程逻辑、执行要求,指导员工正确履行职责,正确完成工作的文件。
制度规范
是指为维护公司正常运行,要求大家共同遵守的与业务相关且在较大范围内长期有效的办事规程或行动准则。包括各种管理类程序、规范、办法、准则、规则、机制、制度、细则等。
操作指导
某个角色或岗位操作一个或多个业务活动的详细说明文件,用于指导员工准确无误的履行工作。
表单/模板
即承载了各类文件的内容提纲及其格式的文档,或者各类文件需要使用的具有固定格式的表格或单据。包括:申请表、记录、检查单、清单等。
4.1.2 分类管理原则
4.1.2.1 流程制度类文件不做分级管理,以文件分类为准,业务执行过程中可通过所属流程架构的层级判定流程制度类文件的层级和业务覆盖范围。
4.1.2.2 管理手册通常对应流程架构中一、二级流程,范围覆盖较大业务领域,三级及以下流程相关管理要求的呈现建议使用制度规范。
4.1.2.3 为保证文件分类的清晰界限制度规范可描述针对流程不同阶段的管理要求但勿体现流程说明和过程描述性质的内容如涉及可以引用相关流程文件以“参见xxx流程”的形式体现。
4.2 流程制度类文件编制
4.2.1 构成与相关属性
4.2.1.1 文件均由封面、目录、文控信息、修订记录及正文构成。
4.2.1.2 正文一般包括目的、术语定义、组织/角色职责、管理原则(管理规范)、流程图和流程说明(流程文件)
4.2.1.3 文件适用范围:是指流程制度类文件发行后,文件内容所适用的具体单位、组织。
4.2.1.4 文件发放范围:是指包含文件适用范围,以及文件的知悉需求的,文件发送单位(适用范围)、抄送单位的总和。
4.2.2 流程制度类文件命名
4.2.2.1 通用命名原则:明确管理内容、适用范围、文件类型等文件关键要素,无范围歧义,确保文件命名的唯一性,如:《伊利集团内部控制评价管理办法》、《液奶品牌策略制定流程》。
4.2.2.2 各类流程制度类文件命名细则:
1) 流程架构文件:流程架构文件命名为《伊利集团流程架构》
2) 管理手册依据管理范围命名为“XX管理手册”如“流程管理手册”“质量管理手册”。
3) 制度规范:制度规范命名规则为“适用范围、管理内容等”+“规范/准则/制度/办法/规则/机制/细则等”,勿使用“方案”等具有明显项目或阶段性管理特征的命名,以免对文件类型产生误导;另外,当文件仅涉及评价标准等管理标准类内容时可使用“标准”进行命名。
4) 流程文件:命名规则=“流程名称”
5) 操作指导:操作指导命名规则为“指导范围、指导内容等”+“操作指导”其中指导内容如为某流程的操作指导,尽可能采用对应流程名称。
6) 表单/模板:“表单/模板适用范围、表单/模板内容等”+“表单”/“模板”
4.2.3 流程制度类文件适用范围设定
流程制度类文件的适用范围是其一个重要属性,需在文控信息及文件编号中明确体现。各单位和组织在文件拟制过程中,需要考虑文件的适用范围合理性,具体原则如下:
* 集团总部职能部门原则上建议拟制适用于整个公司或者总部职能范围的流程制度类文件,针对某个事业部的流程制度类文件,建议由事业部拟制发布。
* 事业部职能部门拟制的文件可适用于本事业部、事业部某特定大区或者工厂,不可拟制适用于多个事业部的流程制度类文件。
* 事业部某大区或者工厂拟制的文件可适用于本大区或者工厂,不可拟制适用于多个工厂或者大区的流程制度类文件。
4.2.4 流程制度类文件编号
流程制度类文件编号根据流程架构参照以下编号规则进行编订,须确保文件编号的唯一性,以方便文件管理。具体如下:
4.2.4.1 文件编号规则
文件整体编号由“文件编号”“版本号”“适用范围”组成,“文件编号”由“架构标号+末级流程编号”“文件类型编码”及“顺序号”组成,其中“架构编号+末级流程编号”与“文件类型编码”之间用“/”隔开,“适用范围”与“版本号”之间用“-”隔开。
整体编号格式为“对应流程架构的架构编号.末级流程编号/文件类型代码+文件顺序号+版本号-适用范围”,方式如下:
其中架构编号和末级流程编号为4个两位数字中间用“.”间隔组成两位数字取值为“0~99”取值小于10时补足两位表示如三级流程“11.1.1”表示为“11.01.01.00”末级流程“11.1.2.1”表示为“11.01.02.01”
4.2.4.2 适用范围编码规则
适用范围的编号格式为“单位属性代码+区域代码+其他代码”,方式如下:
1) 单位属性代码
单位属性代码用代表单位简称的2个字母组成体现文件的适用范围包括集团全公司、总部职能全部、事业部、分公司、子公司、某总部职能部门代码表
单位
编码
集团(全公司)
YL
总部职能
ZB
液奶事业部
YN
酸奶事业部
SN
奶粉事业部
NF
冷饮事业部
LY
奶酪事业部
NL
分公司
FG
子公司
ZG
单位代码表1
单位
编码
单位
编码
总裁办公室
ZC
品牌管理部
PP
战略企划部
ZQ
企业事务部
QS
审计部
SJ
媒介部
MJ
投资管理部
TZ
党群综合部
ZH
董事会办公室
DB
并购部
BG
供应保障部
GY
法律事务部
FL
信息科技中心
XX
质量管理部
ZG
数字化管理办公室
SZ
市场研究部
SC
乳业技术研究院
RY
工程管理部
GC
人力资源部
RL
财务管理部
CW
投资者关系部
TG
国际业务部
GJ
单位代码表2
2) 区域代码
* 如文件适用范围适用于本单位之下的所有工厂/大区默认归属到事业部而非分子公司、或其他分子公司则区域代码为YY如文件适用范围为某大区、工厂或其以外的分子公司需使用区域代码进一步明确范围代码表如下
工厂/分公司名称
代码
工厂/分公司名称
代码
工厂/分公司名称
代码
工厂/分公司名称
代码
辽宁
LN
包头
BT
云南
YN
长春
CC
黄冈
HG
广西
GX
济源
JY
武汉
WH
西安
XA
多伦
DL
龙游
LY
巴彦淖尔
BY
成都
CD
赤峰
CF
梅州
MZ
锡林浩特
XL
金川
JC
咸阳
XY
齐齐哈尔
QQ
廊坊
LF
定州
DZ
河南
HN
金海
JA
杜蒙
DM
天津
TJ
滦州
LU
苏州
SZ
张北
ZB
广东
GD
黑龙江
HL
金华
JH
林甸
LD
合肥
HF
沈阳
SY
潍坊
WF
临朐
LQ
肇东
ZD
北京
BJ
金山
JS
晋中
JZ
乌鲁木齐
WM
阜新
FX
乌兰察布
WL
贵阳
GY
宁夏
NX
济南
JN
兰州
LZ
太原
TY
哈尔滨
HE
郑州
ZZ
广州
GZ
南昌
NC
大连
DA
长沙
CS
深圳
SH
福建
FJ
吉林省
JL
上海
SA
南宁
NN
青岛
QD
石家庄
SJ
南京
NJ
重庆
CQ
杭州
HA
工厂/分公司代码表
大区名称
代码
大区名称
代码
大区名称
代码
B2B北区
BQ
晋冀蒙大区
JM
浙沪大区
ZH
B2B东区
DQ
京津大区
JJ
两湖大区
LH
B2B南区
NQ
京津冀大区
3J
云贵广大区
YG
B2B西区
XQ
鲁豫大区
YQ
安徽大区
AH
东北大区
DB
蒙晋大区
MJ
江苏大区
SQ
华北大区
HB
闽赣大区
MG
河南大区
HQ
华东大区
HD
苏皖大区
SW
粤海大区
YH
华南大区
HU
西北大区
XB
山东大区
SD
华中大区
HZ
西南大区
XN
华西大区
HX
销售大区代码
子公司名称
代码
子公司名称
代码
印尼乳业
ID
新西兰ODL
NZ
印尼绿色亚洲
IG
西部乳业
WL
泰国Chomthana
TH
伊知牛
YZ
其他分子公司代码
3) 其他代码
如文件适用范围为某产品、某业务场景、品类、模块以及后续可能扩展的其他分类可使用其他代码代码命名规则为两位英文字母由文件编码者进行代码注册申请后方可使用安慕希代码可注册为AM。
如文件范围不涉及产品、业务场景、品类、模块等其他扩展分类则其他代码为YY。
4) 代码注册
当事业部、职能部门、工厂、销售大区或分子公司等新增、变更,或适用范围为特定某些工厂/区域组合、文件适用范围涉及“其他代码”等现有代码表未覆盖适用范围的情况发生时,由文件编制者向流程制度类文件管理部门申请增加编码,并提供对应的流程责任人信息,获得确认和反馈后,可使用文件编码。
5) 编码示例
全集团适用的文件适用范围编码为为“YLYYYY”
仅总部职能适用的文件适用范围编码为为“ZBYYYY”
仅液奶事业部适用的文件适用范围编码为为“YNYYYY”
仅液奶金川工厂适用的文件适用范围编码为为“YNJCYY”
仅奶粉西北大区适用的文件适用范围编码为“NFXBYY”
仅液奶事业部安慕希产品适用的文件适用范围编码为“YNYYAM”
仅北京分公司适用的文件适用范围编码为“FGBJYY”
仅印尼乳业适用的文件适用范围编码为“GJIDYY”
仅伊知牛适用的文件适用范围编码为“ZGYZYY”
4.2.4.3 文件类别号
文件类别号用一位字母表示,具体如下。
序号
文件类别
编码
编码备注
1
流程架构文件
A
Architecture
2
管理手册
M
Manual
3
制度规范
R
Rule
4
流程文件
P
Process
5
操作指导
W
Working Instruction
6
表单\模板
T
Template
4.2.4.4 文件顺序号规则
是指该文件的顺序号当文件属于同一流程架构且适用范围相同或文件属于标准流程与适配流程关系以文件顺序号对文件进行独立编号以确保文件编号的唯一性用阿拉伯数字01、02、03……表示。
4.2.4.5 文件版本号规则
VX.x(其中“X”为文件升级版本号当文件变更篇幅≥30%或文件核心内容发生重大变化时对其进行版本升级取值为从1~9“x” 为文件调整版本号当文件变更篇幅30%且未对文件核心内容进行变化时对其进行更新取值为0~9例如V1.0代表文件第一版V1.9代表文件第一版第9次调整)。
4.2.4.6 支持文件编号
支持文件的编号应同派生支持文件的文件保持一致仅文件类别号及顺序号体现差异如《流程制度类文件管理规范》编号为11.01.02.00/R01V1.0-YLYYYY则其支持文件《流程文件模板》编号为11.01.02.00/T01V1.0-YLYYYY《制度规范模板》编号为11.01.02.00/T02V1.0-YLYYYY
4.2.5 流程制度类文件格式要求
4.2.5.1 页面布局
页面布局文件均采用A4纸版面格式。
1) 制度规范普通A4页面边距
* 纵向版面上、下页边距为2.54cm左、右页边距为3.18cm。
* 横向版面上、下页边距为3.18cm左、右页边距为2.54cm。
2) 流程文件ARIS系统自动设定边距
* 纵向版面上、下页边距为3cm左、右页边距为2cm。
* 横向版面上、下页边距为2cm左、右页边距为3cm。
4.2.5.2 封面格式要求
1) 封面包含文件类型、文件编号、文件名称。
2) 文件类型用黑体二号不加粗文件名称用黑体一号字加粗居中文件编号用黑体10不加粗。
3) 封面中文件类型和文件名称用分隔线隔开,上半部分包括文件类型和文件编号,下半部分包括文件名称。
4.2.5.3 文控信息和修订记录格式要求
1) 表格标题使用宋体小四,加粗。
2) 表格内容使用宋体五号,固定部分加粗,填写内容不加粗。
4.2.5.4 目录格式要求
1) 目录采用自动生成目录的方式,确保导航页面可展示目录并定位。
2) 目录页展示1~3级目录3级以下不展示。
3) 目录标题为宋体二号加粗。
4) 目录主体用宋体小四不加粗1.5倍行距。
5) 目录主体部分标题与页码之间用小圆点连接。
4.2.5.5 正文格式要求
1) 内容层次序号4级以内按照以下排列1、1.1、1.1.1、1.1.1.12、2.1、2.1.1、2.1.1.1…4级以上使用1、2、3
2) 正文1、2、3级标题用宋体小四加粗4级标题宋体小四不加粗。
3) 正文内容用宋体小四不加粗首行缩进行距为1.5倍段前段后均为0。4级以外带序号内容悬挂缩进行距为1.5倍段前段后均为0。
4.2.5.6 表格格式要求
1) 正文中表格字体用宋体五号,表头/标题加粗表格内容不加粗表格内行间距为1.0倍。
2) 正文中表格出现跨页情况,需使用标题行重复。
3) 表格中如有内容不涉及用“/”填写。
4.2.5.7 页眉页脚格式要求
1) 页眉左侧使用黑体10号字标明公司全称右侧标明公司LOGO。
2) 页脚左侧使用黑体8号字标明“以上信息为伊利公司所有未经允许不得外传”右侧标明页码页码从封面第一页开始标注。
4.2.5.8 不同文件需按如下要求使用对应模板:
1) 制度规范模板:适用于所有制度规范;
2) 流程文件模板:适用于所有流程文件;
3) 操作指导模板:适用于操作指导;
4) 表单/模板类文件模板:适用于所有表单/模板类文件根据实际需求可采用word版本、excel版本其中封面及修订记录需严格执行模板要求具体内容主要指表单、表格、模板等待填写和套用的部分可根据实际需求采用不同文件形式并作为模板的附件。
4.3 流程制度类文件审签发布
4.3.1 审批要求
流程文件、制度规范由一级流程责任人或其授权人最终审批。
操作指导、模板表单由被授权的三级流程责任人审批。
4.3.2 多文件审签
流程制度类文件可与其支持文件同时发布,发布后支持文件可独立进行变更等管理。
多文件同时发布,需要审签要求最高的文件审签。如流程文件与其支持文件同时发布时,其审签按流程文件执行。
多文件适用范围不同时,最终审批人不同时,原则上不可同时发布。
多文件同时发布,其会签需确保包含多份文件的所有相关方。
4.3.3 文件发布
文件发布具体管理要求请参见《流程制度类文件发布流程》原则上流程制度类文件发布生效后需确保适用范围内可获取、生效版本唯一性、发布过程可追溯、发布途径明确、发布审签符合4.3.1条款规定的审签要求。
4.4 流程制度类文件变更管理
流程制度类文件的变更,由流程责任人或其委托人主导编制,编制完成后,按流程制度类文件发布审签要求执行变更审签及发布。文件名称变更也属于文件变更的范围内,不作为新文件,按文件编号及版本管理要求执行。
4.4.1 文件升级
文件升级指文件变更篇幅≥30%,或文件适用范围变化,组织/角色职责变化≥30%或内容≥30%等重大变更。升级需在文件版本号中明确体现具体见本文件4.2.4.5版本号规则。
4.4.2 文件调整
文件调整指文件变更篇幅30%且文件核心内容:如适用范围、组织/角色职责、内容等均未发生≥30%的变化仅发生个别管理细则的补充、文字描述的更新等。调整需在文件版本号中明确体现具体见本文件4.2.4.5版本号规则。
4.5 流程制度类文件废止
单独废止某流程制度类文件,审签与文件发布执行相同流程,具体参见《流程制度类文件发布流程》
如流程制度文件因新版本发行而对现行版本进行废止或发行后需废止某特定文件需在附则中明确现行版本VX.x或某文件需注明编号同步废止。
2. 相关文件**

View File

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8"?>
<app xmlns="http://www.actionsoft.com.cn/app">
<name>PAL文件数据批量处理</name>
<version>1.0</version>
<buildNo>9</buildNo>
<developer id="00000000000000000000000000000000" tablePrefix="EU" url="http://www.awspaas.com">AWSPaaS-EndUser</developer>
<categoryVisible>true</categoryVisible>
<description><![CDATA[]]></description>
<details><![CDATA[]]></details>
<installListener/>
<pluginListener>com.awspaas.user.apps.app.plugins.Plugins</pluginListener>
<startListener/>
<stopListener/>
<upgradeListener/>
<uninstallListener/>
<reloadable>true</reloadable>
<requires>
<require appId="com.actionsoft.apps.addons.onlinedoc" notActiveHandler="none" res="false"/>
<require appId="com.actionsoft.apps.dict" notActiveHandler="warning" res="false"/>
</requires>
<properties/>
<allowStartup>true</allowStartup>
<allowUpgradeByStore>true</allowUpgradeByStore>
<depend versions="6.5" env="">com.actionsoft.apps.coe.pal</depend>
<modelAdministrator/>
<installDate>2022-10-08 17:55:07</installDate>
<icon code="&amp;#xe64f;" color="#009688"/>
<deployment>
<system id="obj_18eb637f38e14837a4fa2e72852d109b" icon16="&amp;#xe64f;|#009688" icon64="" icon96="" notifier="" name="PAL%u6587%u4EF6%u6570%u636E%u6279%u91CF%u5904%u7406" target="mainFrame" url="/" deployUrlType="2" source="0" appId="com.awspaas.user.apps.app20221008163300">
<directory id="obj_43ef8c85d85f44b082408a07796e00af" icon16="" icon64="" icon96="" notifier="" name="%u6587%u4EF6%u5904%u7406" target="mainFrame" url="/" deployUrlType="2" source="0" orderIndex="1" appId="com.awspaas.user.apps.app20221008163300">
<function id="obj_bfa00a1b68bd42d8b8d18285d6d8d447" icon16="../apps/com.awspaas.user.apps.app20221008163300/img/icon16.png" icon64="../apps/com.awspaas.user.apps.app20221008163300/img/icon64.png" icon96="../apps/com.awspaas.user.apps.app20221008163300/img/icon96.png" notifier="" name="%u6587%u4EF6%u72B6%u6001%u6279%u91CF%u4FEE%u6539" target="mainFrame" url="./w?sid=@sid&amp;cmd=CLIENT_DW_PORTAL&amp;processGroupId=obj_b5f395389a354557ac73e2eef0315533&amp;appId=com.awspaas.user.apps.app20221008163300" deployUrlType="2" source="0" orderIndex="1" appId="com.awspaas.user.apps.app20221008163300"/>
<function id="obj_dff845d9945f4c398695959b2fba8744" icon16="../apps/com.awspaas.user.apps.app20221008163300/img/icon16.png" icon64="../apps/com.awspaas.user.apps.app20221008163300/img/icon64.png" icon96="../apps/com.awspaas.user.apps.app20221008163300/img/icon96.png" notifier="" name="PAL%u6587%u4EF6%u67B6%u6784%u79FB%u52A8" target="mainFrame" url="./w?sid=@sid&amp;cmd=CLIENT_DW_PORTAL&amp;processGroupId=obj_aed82b86aba14271a0b0ad02b5fb3de7&amp;appId=com.awspaas.user.apps.app20221008163300" deployUrlType="2" source="0" orderIndex="2" appId="com.awspaas.user.apps.app20221008163300"/>
</directory>
<directory id="obj_00980040a19845eab07becdd18607028" icon16="" icon64="" icon96="" notifier="" name="%u624B%u518C%u65E5%u5FD7" target="mainFrame" url="/" deployUrlType="2" source="0" orderIndex="2" appId="com.awspaas.user.apps.app20221008163300">
<function id="obj_16b58cac9e044cdbb88e910029a9f682" icon16="../apps/com.awspaas.user.apps.app20221008163300/img/icon16.png" icon64="../apps/com.awspaas.user.apps.app20221008163300/img/icon64.png" icon96="../apps/com.awspaas.user.apps.app20221008163300/img/icon96.png" notifier="" name="%u624B%u518C%u9884%u89C8%u52A0%u8F7D%u65E5%u5FD7" target="mainFrame" url="./w?sid=@sid&amp;cmd=CLIENT_DW_PORTAL&amp;processGroupId=obj_e823232d22454476a29dd282504fa8c9&amp;appId=com.awspaas.user.apps.app20221008163300" deployUrlType="2" source="0" orderIndex="1" appId="com.awspaas.user.apps.app20221008163300"/>
</directory>
<directory id="obj_655c166c348642f784be608115d32d31" icon16="" icon64="" icon96="" notifier="" name="%u5F85%u529E%u5F85%u9605" target="mainFrame" url="/" deployUrlType="2" source="0" orderIndex="3" appId="com.awspaas.user.apps.app20221008163300">
<function id="obj_1a1876d3809e4656b942a9c37bcc08e2" icon16="../apps/com.awspaas.user.apps.app20221008163300/img/icon16.png" icon64="../apps/com.awspaas.user.apps.app20221008163300/img/icon64.png" icon96="../apps/com.awspaas.user.apps.app20221008163300/img/icon96.png" notifier="" name="%u624B%u52A8%u63A8%u9001%u5F85%u9605%u6D41%u7A0B" target="mainFrame" url="./w?sid=@sid&amp;cmd=CLIENT_BPM_WORKLIST_MAIN&amp;processGroupId=obj_e3ca633416274d09bcd9b812780db9a3&amp;boxTitle=" deployUrlType="2" source="0" orderIndex="1" appId="com.awspaas.user.apps.app20221008163300"/>
</directory>
</system>
</deployment>
<productId/>
<releaseDate>2022-11-23</releaseDate>
<upgradeDate>2022-11-23 20:59:59</upgradeDate>
</app>

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<mobile-profile xmlns="http://www.actionsoft.com.cn/app">
<osType></osType>
<deviceType>universal</deviceType>
<realAppId></realAppId>
<realVersion>1.0</realVersion>
<resourceType>common</resourceType>
<resourceURI></resourceURI>
<ssoType>sid</ssoType>
<backupable>false</backupable>
<cascadeRemove>true</cascadeRemove>
<autoDistribute>false</autoDistribute>
<trackId></trackId>
</mobile-profile>

View File

@ -0,0 +1,113 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>06a8bfc0-25e4-46f8-bc5f-f9b5e1a9c804</id>
<createUser>admin</createUser>
<createTime>2022-11-05 19:56:05</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-05 20:00:54</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrUM9qdDs49JLlT+VyfBQzCtRm/vYfYfeUpb8QZxHIOgIEe+AnSMJZkbEP2iip4alX</signature>
<managed>false</managed>
<title>待阅推送失败人员记录</title>
<name>BO_EU_READ_COUNT</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>待办待阅</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>28fb4241-a91c-439f-8e2a-7939fe150e45</id>
<name>TITLE</name>
<title>文件标题</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>196772d5-e0c2-4d1a-94a9-2619835c2797</id>
<name>NAME</name>
<title>接收人</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>b172c8dd-1b42-4c62-97ab-254cd4c596c8</id>
<name>DEPNAME</name>
<title>部门名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>6bc7ee35-2c63-4686-a1bf-4f6fc4c4d548</id>
<name>AWS_IN_B163450884DD</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,165 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>0b707241-9f6d-49a0-bffa-acb4ece3d3de</id>
<createUser>admin</createUser>
<createTime>2022-10-13 22:17:33</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-13 22:19:28</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrxl+saVe4FeCV5KC6P30dvxyp52oMpmDywgs3nLWgp3gDkRBxW4VMyZ0zgH5GSpDi</signature>
<managed>false</managed>
<title>PAL架构替换</title>
<name>BO_EU_PAL_FRAMEWORK_TOOL</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>文件处理</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>ee03ab0a-213e-4a3f-a886-844159597e76</id>
<name>PALNAME</name>
<title>文件名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>ffdb7763-2c10-4a5c-ab63-52341ea6a612</id>
<name>ERRORFRAMEWORK</name>
<title>错误架构</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>3746a9c7-5970-45ca-abf7-a09938d8070c</id>
<name>CORRECTFRAMEWORK</name>
<title>正确架构</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>cd5d6425-9a8a-4b63-9ce7-c773cb7d898f</id>
<name>PAID</name>
<title>文件Id</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>213dd195-d4cf-4ff9-9d02-6b6705eecf56</id>
<name>RESULT</name>
<title>修改结果</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>214184f2-9230-4d30-b90d-d77c46e14095</id>
<name>AWS_IN_23DC9BF4EAF3</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,373 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>1f509b16-a35c-41ca-a5d7-c82d13004979</id>
<createUser>admin</createUser>
<createTime>2022-10-08 16:39:36</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-12 16:10:14</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrYGgreD50ydf2hWRt5SZDBaiNgOLALW9T7hRmbe/OLRUhSVPdlwM7HWVDGC0obLhU</signature>
<managed>false</managed>
<title>模型权限导入模板</title>
<name>BO_EU_PUBLISH_SCOPE_IMPORT</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>权限处理</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>e20976d6-df82-477e-807c-10699e868307</id>
<name>PALNAME</name>
<title>模型名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>d96a2fbc-498a-473f-a82f-72c0b71893d8</id>
<name>ORGPERM</name>
<title>组织权限,部门名称,逗号分隔</title>
<columnType>TEXT</columnType>
<length>2000</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>200</columnWidth>
<componentId>AWSUI.Address</componentId>
<componentSetting>{"placeholder":"","addressType":"dept","isLiveSearch":true,"addressSetting":{"delimiter":",","choiceType":"single","leafType":"dept"},"range":"all","isFullDeptPath":false,"deptSourceField":"DEPTID","deptTargetField":"ORGPERM"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>9fb66a90-997f-4811-ad94-b8403237d8b6</id>
<name>POSTPERM</name>
<title>岗位权限,岗位名称,逗号分隔</title>
<columnType>TEXT</columnType>
<length>2000</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>200</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>9ebad961-737d-4c1d-a1a9-0966b696933a</id>
<name>LEVELPERM</name>
<title>职级权限,职级名称,逗号分隔</title>
<columnType>TEXT</columnType>
<length>2000</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>200</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>53cc9ebb-c1ee-4ff7-880f-e13410f1058b</id>
<name>LEVELFAIL</name>
<title>未匹配到的职级</title>
<columnType>TEXT</columnType>
<length>2000</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>f018f7d7-d416-42bf-9ac0-527a9d3b7c48</id>
<name>POSTFAIL</name>
<title>未匹配到的岗位</title>
<columnType>TEXT</columnType>
<length>2000</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>1c5cf7ae-2e72-46f3-b16d-f4d0dc23aaf1</id>
<name>ORGFAIL</name>
<title>未匹配到的组织</title>
<columnType>TEXT</columnType>
<length>2000</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>5b557df5-a93a-433f-8604-70e4d2af569d</id>
<name>RESULT</name>
<title>导入结果</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>48418d16-2b34-49f1-a6bb-e09e7faaa536</id>
<name>SEND_SCOP</name>
<title>权限范围1:全集团0:部分)</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>69c12aba-0f84-4c10-968d-e36b99facbd6</id>
<name>PALVERSIONID</name>
<title>PAL模型版本ID</title>
<columnType>TEXT</columnType>
<length>36</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>4e0fea9d-d0df-450c-9e72-036e823f0d59</id>
<name>FRNAME</name>
<title>架构名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>5c8187a9-fe1b-4f8f-a0d3-20500cb3edce</id>
<name>FILETYPE</name>
<title>文件类型</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>7fcc6eea-d42a-4194-8430-f709bb9a6c1e</id>
<name>IDPLUBSH</name>
<title>是否发布</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>cc21abdc-16c3-4ab6-8426-bc7d26327a71</id>
<name>AWS_IN_C3A4CD81B919</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,165 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>354355c2-cb66-4d1e-89b9-7db697964fd9</id>
<createUser>admin</createUser>
<createTime>2022-10-08 16:37:04</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-08 16:37:13</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrg+6PzlOIWrw4pxrXlsT7xUY5BB6n7LPo4oPjWvPGe3BRy0LNlP3CX9PWIW/6+NSR</signature>
<managed>false</managed>
<title> 视图文件表状态修改记录表</title>
<name>BO_EU_PAL_FILE_NULL_L</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>文件处理</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>533add71-de64-4de7-86e6-c2e426345c8a</id>
<name>PLNAME</name>
<title>模型名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>f23bd1b9-dbee-417e-bf47-480d3c788331</id>
<name>FRAMEWORK</name>
<title>架构名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>fa6da524-7945-447d-b2ba-b91a7431d1ab</id>
<name>VERSION</name>
<title>版本号</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>3fc67753-79e8-4fac-81e0-b389dcf1b5fb</id>
<name>TYPE</name>
<title>模型类型</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>ee0d67ab-4e95-4619-8093-e9237d195e5f</id>
<name>ISPUBLISH</name>
<title>是否发布</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>2701a7ec-ba7e-47dd-ac90-e79c1451c5d5</id>
<name>AWS_IN_97C860604815</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>367a7e45-c3a7-435f-8213-49b52bb90663</id>
<createUser>admin</createUser>
<createTime>2022-11-11 18:20:09</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-11 18:20:43</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrEzSBflC67q2gyVl/Cm+xCAkd4be67Vcc8NJFrX1VucSif+JBYJ0JVKtosNVYvUyN</signature>
<managed>false</managed>
<title>批量刷新编号</title>
<name>BO_EU_PAL_NOREFR</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>文件处理</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>825d16c7-b8c7-4748-ba83-226890c589f8</id>
<name>PLNAME</name>
<title>模型名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>ab99a718-ed30-4249-a608-08bdac1d7a9c</id>
<name>PLID</name>
<title>模型ID</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>fc0f5b4e-7eab-4b93-8db1-ac4c16c9125a</id>
<name>AWS_IN_A3DB3CD51D3E</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,165 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>3eb4ced6-bc73-4d9a-b263-21be6a51bbe8</id>
<createUser>admin</createUser>
<createTime>2022-10-08 16:34:51</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-08 16:35:02</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrHsajck9EvGFZVXbIQ0F0b0lWdOeqymUNRn/L+uY0hQ5aVZlgxXQMRQnQ1k08lKKs</signature>
<managed>false</managed>
<title>PAL空模型记录</title>
<name>BO_EU__PAL_NULL_L</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>文件处理</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>3764b0ee-b3dc-496c-a3ec-e5bbd1ae8beb</id>
<name>PLNAME</name>
<title>模型名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>8f10f2bf-6209-4201-97ab-71c4b1b009c7</id>
<name>FRAMEWORK</name>
<title>架构名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>4cc1f3f4-3e0a-4351-8b14-b537ad81dd3d</id>
<name>VERSION</name>
<title>版本号</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>a47b6c1d-dd1e-46b4-9b1c-5d6e5faa37e2</id>
<name>TYPE</name>
<title>模型类型</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>78ffa151-09d4-4137-ad1e-2b403976ca86</id>
<name>ISPUBLISH</name>
<title>是否发布</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>3f8ab66c-af1e-4e3a-9423-3c91ec1e6f38</id>
<name>AWS_IN_CD17D2709D42</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,165 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>522c9ad1-5ce3-4c3c-9aaf-39323976096b</id>
<createUser>admin</createUser>
<createTime>2022-11-08 15:14:40</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-08 17:00:01</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr/35+jJ9btNe7O1DOrLZCeQXsMesrBq1hyDvQCZLxYOQ/WssNhZoGnD9hel1dHOnt</signature>
<managed>false</managed>
<title>补充推送待阅</title>
<name>BO_EU_PAL_PUBLIC_SUPPLEMENT</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>待办待阅</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>94fedce0-2cf7-4587-863d-29fac348d70a</id>
<name>PUBLISHUSERNAME</name>
<title>补充发布申请人</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>false</nullable>
<defaultValue>@uid()</defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0","placeholder":"","dataType":"localJDBC","data":{"sql":""},"isClearAllText":true,"barCode":false,"boUrlFormData":{"hrefSelVal":"nothing"},"extendType":"text","scanCodeAutoSubmit":false}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>false</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule>{"type":"org","orgtype":"user"}</displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>884f08ef-77f1-4f8b-a16f-ad6b07a7c54a</id>
<name>PUBLISHUSERTIME</name>
<title>补发时间</title>
<columnType>DATE</columnType>
<length>0</length>
<nullable>false</nullable>
<defaultValue>@datetime()</defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.DateTime</componentId>
<componentSetting>{"placeholder":"","minDate":"","maxDate":"","showtype":"doubleCalendar","advSetting":"","dateFmt":"yyyy-MM-dd HH:mm:ss","showDayOfWeek":"false","dwfmt":"(EE)"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>false</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>6362dce2-2e55-46a5-9adb-0b174aced8e2</id>
<name>REASON</name>
<title>补发原因</title>
<columnType>TEXT</columnType>
<length>500</length>
<nullable>false</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Textarea</componentId>
<componentSetting>{"listHeight":"100","autoHeight":"false","placeholder":"","fnKey1":"false","fnKey2":"false","fnKey3":"false","lineFeed":"false","key":"","search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>0ad45698-431d-4d52-b1c9-7182937016ff</id>
<name>PUBLISHUSPROSSINSID</name>
<title>关联发布ID</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>false</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.ComboBox</componentId>
<componentSetting>{"placeholder":"","boItemId":"522c9ad1-5ce3-4c3c-9aaf-39323976096b","isAdvance":false,"mapping":{"source":"id","target":"this"},"display":"PROCESSTITLE","dataType":"localJDBC","data":{"sql":"select id,PROCESSTITLE from wfc_process where createuser !='admin'and PROCESSDEFID = 'obj_fb1c7a54b98b412187388c8bab407362'and CONTROLSTATE = 'end' and processtitle not like '%测试%'"},"valueTrans":"","mode":"common","exportDataValidity":true,"setunival":true,"boUrlFormData":{"hrefSelVal":"nothing"}}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>ff781bff-81e9-45ca-9e59-bf871b962614</id>
<name>PUBLISHTOUSER</name>
<title>补充发送人员</title>
<columnType>TEXT</columnType>
<length>2000</length>
<nullable>false</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Address</componentId>
<componentSetting>{"placeholder":"","addressType":"user","isLiveSearch":true,"isAdvMode":true,"companyList":"","addressSetting":{"rootDetpId":"","teamId":"","isDisplayMap":true,"isMapFormat":false,"hideSubDeptAsCompany":false,"layerFrom":"","layerTo":"","range":"department|team","delimiter":",","choiceType":"multiple","itemDisplayType":"all","leafType":"user","filterClass":"","sourceDataClass":""},"sourceField":"UID","targetField":"PUBLISHTOUSER"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>1d4e9b3d-3488-4097-8924-26d78ae434d1</id>
<name>AWS_IN_DCF0DD99A2BC</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,165 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>522c9ad1-5ce3-4c3c-9aaf-39323976096b</id>
<createUser>admin</createUser>
<createTime>2022-11-08 15:14:40</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-08 16:35:09</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr/35+jJ9btNe7O1DOrLZCeQXsMesrBq1hyDvQCZLxYOQ/WssNhZoGnD9hel1dHOnt</signature>
<managed>false</managed>
<title>补充推送待阅</title>
<name>BO_EU_PAL_PUBLIC_SUPPLEMENT</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>待办待阅</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>94fedce0-2cf7-4587-863d-29fac348d70a</id>
<name>PUBLISHUSERNAME</name>
<title>补充发布申请人</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>false</nullable>
<defaultValue>@uid()</defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>false</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>884f08ef-77f1-4f8b-a16f-ad6b07a7c54a</id>
<name>PUBLISHUSERTIME</name>
<title>补发时间</title>
<columnType>DATE</columnType>
<length>0</length>
<nullable>false</nullable>
<defaultValue>@datetime()</defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Date</componentId>
<componentSetting>{}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>false</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>6362dce2-2e55-46a5-9adb-0b174aced8e2</id>
<name>REASON</name>
<title>补发原因</title>
<columnType>TEXT</columnType>
<length>500</length>
<nullable>false</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Textarea</componentId>
<componentSetting>{"listHeight":"100","autoHeight":"false","placeholder":"","fnKey1":"false","fnKey2":"false","fnKey3":"false","lineFeed":"false","key":"","search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>0ad45698-431d-4d52-b1c9-7182937016ff</id>
<name>PUBLISHUSPROSSINSID</name>
<title>关联发布ID</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>false</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.ComboBox</componentId>
<componentSetting>{"placeholder":"","boItemId":"522c9ad1-5ce3-4c3c-9aaf-39323976096b","isAdvance":false,"mapping":{"source":"id","target":"this"},"display":"PROCESSTITLE","dataType":"localJDBC","data":{"sql":"select id,PROCESSTITLE from wfc_process where createuser !='admin'and PROCESSDEFID = 'obj_fb1c7a54b98b412187388c8bab407362'and CONTROLSTATE = 'end'"},"valueTrans":"","mode":"common","exportDataValidity":true,"setunival":true,"boUrlFormData":{"hrefSelVal":"nothing"}}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>ff781bff-81e9-45ca-9e59-bf871b962614</id>
<name>PUBLISHTOUSER</name>
<title>补充发送人员</title>
<columnType>TEXT</columnType>
<length>2000</length>
<nullable>false</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Address</componentId>
<componentSetting>{"placeholder":"","addressType":"user","isLiveSearch":true,"isAdvMode":false,"addressSetting":{"isMapFormat":false,"delimiter":",","choiceType":"multiple"},"deptSourceField":"","deptTargetField":""}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>1d4e9b3d-3488-4097-8924-26d78ae434d1</id>
<name>AWS_IN_DCF0DD99A2BC</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,165 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>522c9ad1-5ce3-4c3c-9aaf-39323976096b</id>
<createUser>admin</createUser>
<createTime>2022-11-08 15:14:40</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-08 16:19:53</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr/35+jJ9btNe7O1DOrLZCeQXsMesrBq1hyDvQCZLxYOQ/WssNhZoGnD9hel1dHOnt</signature>
<managed>false</managed>
<title>补充推送待阅</title>
<name>BO_EU_PAL_PUBLIC_SUPPLEMENT</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>待办待阅</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>94fedce0-2cf7-4587-863d-29fac348d70a</id>
<name>PUBLISHUSERNAME</name>
<title>补充发布申请人</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>false</nullable>
<defaultValue>@uid()</defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>false</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>884f08ef-77f1-4f8b-a16f-ad6b07a7c54a</id>
<name>PUBLISHUSERTIME</name>
<title>补发时间</title>
<columnType>DATE</columnType>
<length>0</length>
<nullable>false</nullable>
<defaultValue>@datetime()</defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Date</componentId>
<componentSetting>{}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>false</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>6362dce2-2e55-46a5-9adb-0b174aced8e2</id>
<name>REASON</name>
<title>补发原因</title>
<columnType>TEXT</columnType>
<length>500</length>
<nullable>false</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Textarea</componentId>
<componentSetting>{"listHeight":"100","autoHeight":"false","placeholder":"","fnKey1":"false","fnKey2":"false","fnKey3":"false","lineFeed":"false","key":"","search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>0ad45698-431d-4d52-b1c9-7182937016ff</id>
<name>PUBLISHUSPROSSINSID</name>
<title>关联发布ID</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>false</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.ComboBox</componentId>
<componentSetting>{"placeholder":"","boItemId":"522c9ad1-5ce3-4c3c-9aaf-39323976096b","isAdvance":false,"mapping":{"source":"id","target":"this"},"display":"PROCESSTITLE","dataType":"localJDBC","data":{"sql":"select id,PROCESSTITLE from wfc_process where createuser !='admin'and PROCESSDEFID = 'obj_fb1c7a54b98b412187388c8bab407362'and CONTROLSTATE = 'end' and processtitle not like '%测试%'"},"valueTrans":"","mode":"common","exportDataValidity":true,"setunival":true,"boUrlFormData":{"hrefSelVal":"nothing"}}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>ff781bff-81e9-45ca-9e59-bf871b962614</id>
<name>PUBLISHTOUSER</name>
<title>补充发送人员</title>
<columnType>TEXT</columnType>
<length>2000</length>
<nullable>false</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Address</componentId>
<componentSetting>{"placeholder":"","addressType":"user","isLiveSearch":true,"isAdvMode":false,"addressSetting":{"isMapFormat":false,"delimiter":",","choiceType":"multiple"},"deptSourceField":"","deptTargetField":""}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>1d4e9b3d-3488-4097-8924-26d78ae434d1</id>
<name>AWS_IN_DCF0DD99A2BC</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,165 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>76ebd0a8-18ba-4bbd-8d7e-b6cfc41d50c9</id>
<createUser>admin</createUser>
<createTime>2022-10-08 18:20:28</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-08 18:32:29</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrWeynaI03xuI9HMo3ooxzSdQCLFJ5zc2km5H/YGYCYMT9YIpI8250zLcxDLfBLFP1</signature>
<managed>false</managed>
<title>状态更新子表</title>
<name>BO_EU_PAL_SATE_SUB</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>文件处理</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>b65c0dd1-3f66-45ee-98ae-1e17344dc748</id>
<name>PLNAME</name>
<title>文件名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>d16657be-ca82-49f2-b711-2a07d7c86447</id>
<name>PLID</name>
<title>文件id</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.TreeDictionary</componentId>
<componentSetting>{"leafField":"PLPARENTID","leafValue":"0","leafS":"notEql","filterField":"","filterS":"","filterValue":"","filter":[],"multiselect":false,"checkInherit":true,"separator":",","allPath":false,"allPathSeparator":",","searchShow":"table","fileName":"$[PLNAME]","getFields":"PLNAME","displayField":"","fillBackFields":"PLID","pId":"PLPARENTID","dId":"ID","mapping":{"source":"PLNAME","target":"PLID"},"placeholder":"","dialogName":"","mappingRule":"leaf;parent;","iconCls":"","advCls":"","dataType":"localJDBC","data":{"sql":"select * from App_Act_Coe_Pal_Repository where PLPARENTID !='0'","rootSql":""},"boUrlFormData":{"hrefSelVal":"nothing"}}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>56f7803e-d425-4ae3-a129-14c089567d32</id>
<name>PLVESION</name>
<title>文件版本</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>01c53b09-dd13-4383-9a85-db7e98cbdd18</id>
<name>RESULT</name>
<title>修订记录</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>8c904160-0eac-45b6-8a31-9e88d83698ae</id>
<name>PLFILE</name>
<title>文件附件</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.File</componentId>
<componentSetting>{"isEncrypt":true,"manualSort":false,"fileCount":"0","fileClassificationList":"","fileWatermark":"","fileWatermarkFont":"","fileWatermarkFontColor":"","sortField":"CREATEDATE","sortType":"asc","compressFlag":"","waterMarkFlag":"","waterMarkPosition":"","waterMarkFontColor":"","waterMarkFontSize":30,"fileMaxSize":"","uploadField":"上传人|CREATEUSER||false,上传时间|CREATEDATE||false,大小|FILESIZE||false,授权|AUTHORIZATION||false,预览|PREVIEW||false","anyFile":true,"uiSetting":{"anyFileExtList":""},"canPreviewOfficeFlag":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>691173aa-6623-4c38-a3a9-aedab53bbdbc</id>
<name>AWS_IN_6B32B8815055</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,347 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>7e437f57-2b41-4ccb-83b7-1898c2ef164b</id>
<createUser>admin</createUser>
<createTime>2022-10-08 16:38:49</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-08 16:38:56</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr+mORKh8oFYSDp/5Ui47m5QjEsxpomU8hLcCYB6AtXgUR+APpgthraVd/RCDutRGi</signature>
<managed>false</managed>
<title> 模型权限2</title>
<name>BO_EU_PUBLISH_PERM_SCOPE2</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>权限处理</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>a0885b07-ef19-4783-b15c-05544b0471bf</id>
<name>PERMID</name>
<title>权限ID</title>
<columnType>TEXT</columnType>
<length>36</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>2217d02b-ba23-4198-afe5-1025f891bc64</id>
<name>WSID</name>
<title>资产库ID</title>
<columnType>TEXT</columnType>
<length>36</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>2a5cc44a-0f68-49fa-a342-356828cda137</id>
<name>PALVERSIONID</name>
<title>PAL模型版本ID</title>
<columnType>TEXT</columnType>
<length>36</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>a84bcb7d-eaa3-47c3-a5a2-dab1e74006ef</id>
<name>PALNAME</name>
<title>模型名称(冗余字段)</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>dc303b83-2069-4b77-839b-8f447d52a836</id>
<name>PERMTYPE</name>
<title>权限类型</title>
<columnType>TEXT</columnType>
<length>64</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>a04d38b5-ccdc-47da-aecd-a302bcd062fa</id>
<name>ORGPERM</name>
<title>组织权限部门ID逗号分隔</title>
<columnType>TEXT</columnType>
<length>2000</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>200</columnWidth>
<componentId>AWSUI.Address</componentId>
<componentSetting>{"placeholder":"","addressType":"dept","isLiveSearch":true,"addressSetting":{"delimiter":",","choiceType":"single","leafType":"dept"},"range":"all","isFullDeptPath":false,"deptSourceField":"DEPTID","deptTargetField":"ORGPERM"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>791ab96c-b10f-43d9-a1f1-231b39cfc8f5</id>
<name>POSTPERM</name>
<title>岗位权限岗位ID逗号分隔</title>
<columnType>TEXT</columnType>
<length>2000</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>200</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>40b6cf3f-f605-4feb-8c31-0b4d4fa3d978</id>
<name>LEVELPERM</name>
<title>职级权限职级ID逗号分隔</title>
<columnType>TEXT</columnType>
<length>2000</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>200</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>a3e4a115-e63b-4152-b1cd-b1b437e3a528</id>
<name>EXT1</name>
<title>备用字段1</title>
<columnType>TEXT</columnType>
<length>36</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>eb6d0702-402b-4b1f-aeb0-e5453990d122</id>
<name>EXT2</name>
<title>备用字段2</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>d0095911-1748-42c8-89e3-2e47861697fe</id>
<name>EXT3</name>
<title>备用字段3</title>
<columnType>TEXT</columnType>
<length>256</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>150</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>fc7f5add-70cb-4014-a767-68c0e1e1ebf4</id>
<name>EXT4</name>
<title>备用字段4</title>
<columnType>TEXT</columnType>
<length>512</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>200</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>5cb29808-6d12-45dc-8701-74e102ac7402</id>
<name>AWS_IN_FC70D561C8B7</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,217 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>80e2f9d6-5e3b-46ba-b80a-770710ed2210</id>
<createUser>admin</createUser>
<createTime>2022-10-25 16:08:30</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-28 12:03:17</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr3SyxrdZbejWVEcffzXmnFAZqQLJ0X2IuSPKFmjsSjDLFW43Pm0PVW2yDt+s69LwH</signature>
<managed>false</managed>
<title>PAL错误模型统计</title>
<name>BO_EU_PAL_ERROR_FILE</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>文件处理</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>b3205bd8-cc68-4a55-9e56-0b65e0cd53f9</id>
<name>PLNAME</name>
<title>模型名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>70535008-b037-4425-bd62-2a3ee816936a</id>
<name>FRAMEWORK</name>
<title>架构名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>288f43d5-acf4-445b-8ea6-1b17a9cab0a7</id>
<name>VERSION</name>
<title>版本号</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>55f85831-6fe3-4583-a4fb-5b773cc1b627</id>
<name>TYPE</name>
<title>模型类型</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>1476b894-a9bc-4350-b48b-ffd654e0cde2</id>
<name>ISPUBLISH</name>
<title>是否发布</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>3749e33b-d9a4-4571-bcb4-db72d92a4b38</id>
<name>ERRORTYPE</name>
<title>错误类型</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>244124ed-da54-4076-af63-7e75ed9a4330</id>
<name>PLID</name>
<title>模型ID</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>04c9137d-f16c-4f0a-8e68-f551da6ee119</id>
<name>AWS_IN_AD03B9701380</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,139 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>831ed6e3-df83-417f-85c0-2b17fd443eef</id>
<createUser>admin</createUser>
<createTime>2022-10-12 14:50:14</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-12 15:30:22</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrYGgreD50ydf2hWRt5SZDBaiNgOLALW9T7hRmbe/OLRUhSVPdlwM7HWVDGC0obLhU</signature>
<managed>false</managed>
<title>无预览权限的模型统计</title>
<name>BO_EU_PAL_NULL_PREM</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>权限处理</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>eb54caed-fbb9-4577-9e06-e2c902e79ff6</id>
<name>PALNAME</name>
<title>模型名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>aed1e6d4-144d-46e7-8d59-d4760805bc49</id>
<name>ORGPERM</name>
<title>组织权限,部门名称,逗号分隔</title>
<columnType>TEXT</columnType>
<length>2000</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>200</columnWidth>
<componentId>AWSUI.Address</componentId>
<componentSetting>{"placeholder":"","addressType":"dept","isLiveSearch":true,"addressSetting":{"delimiter":",","choiceType":"single","leafType":"dept"},"range":"all","isFullDeptPath":false,"deptSourceField":"DEPTID","deptTargetField":"ORGPERM"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>f2b9d07e-293e-4c83-8751-1e9014f3d42e</id>
<name>POSTPERM</name>
<title>岗位权限,岗位名称,逗号分隔</title>
<columnType>TEXT</columnType>
<length>2000</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>200</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>88dfa773-5714-4949-a26e-e3182c66d6d7</id>
<name>LEVELPERM</name>
<title>职级权限,职级名称,逗号分隔</title>
<columnType>TEXT</columnType>
<length>2000</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>200</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>cc21abdc-16c3-4ab6-8426-bc7d26327a71</id>
<name>AWS_IN_951170FF5C70</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,139 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>889193c3-fade-4075-8b4e-69403a3bf34d</id>
<createUser>admin</createUser>
<createTime>2022-10-17 16:11:33</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-17 16:11:33</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrjvueaO4iSDlLh9v2JV9aHQzAgek5DhRI7EhkSM1fqYaHNbEciz3nJNBAzWI4/RFG</signature>
<managed>false</managed>
<title>文件批量发布</title>
<name>BO_EU_PAL_PLFB</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>文件处理</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>416588f5-ad38-49b6-ac06-6f92038e8d6d</id>
<name>FRAMEWORKNAME</name>
<title>所属架构</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>6eed1b24-c2f5-4eb3-b1fa-c2c969a70419</id>
<name>PLNAME</name>
<title>文件名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>085042cf-ac9c-4f17-8411-7fb627184167</id>
<name>ISPUBLISH</name>
<title>是否发布</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.ComboBox</componentId>
<componentSetting>{"placeholder":"","boItemId":"c304434f-3c94-476a-9cfc-c862e7af4925","isAdvance":false,"dataType":"sampleText","data":"否|是","mode":"common","exportDataValidity":true,"setunival":true,"boUrlFormData":{"hrefSelVal":"nothing"}}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>4117c778-8eba-42f8-9bf5-d91f0d7eae02</id>
<name>PLID</name>
<title>文件id</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>2f8ceec9-05b0-46d6-b2d7-68e4672f8b3c</id>
<name>AWS_IN_D3B1F10EB3CE</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,269 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>ab099a54-8a8d-46f1-b359-a4ac64b014fc</id>
<createUser>admin</createUser>
<createTime>2022-10-10 23:32:43</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-11 12:33:25</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrE/bRWliEMOyg4nDfR/YTGM+e+jx+7IXvEoXLCa7maOw0v4psHHGkw3cGCtQZsP+j</signature>
<managed>false</managed>
<title>手册预览加载日志</title>
<name>BO_EU_PAL_OUTPUTREPORT</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>手册日志</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>757dbcd5-b8a5-4c69-ba9a-36f2f70ce590</id>
<name>PLNAME</name>
<title>模型名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>4b539719-6108-43ae-8d34-6c1f7b578009</id>
<name>PLVERSION</name>
<title>模型版本</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>8588a110-e1bb-4463-affa-6411d9018183</id>
<name>PLMETHODID</name>
<title>模型类型</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>79559b7c-1e17-4aae-975f-ab5ffee5702a</id>
<name>FILEURL</name>
<title>预览链接</title>
<columnType>TEXT</columnType>
<length>2000</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>8360ff1f-65cc-4e04-a2bb-e1ebd9561a01</id>
<name>RESULT</name>
<title>转换结果</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>db2cc759-a980-471b-ac93-0cc58c825f62</id>
<name>PLID</name>
<title>模型Id</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>3a61a352-b04f-4680-a8af-fa9b0f168d1c</id>
<name>FRNAME</name>
<title>架构名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>74b21635-1c16-4173-8279-1456012d99c9</id>
<name>TASKID</name>
<title>手册ID</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>f77ab97d-d142-4ea5-9554-98d94d664292</id>
<name>REMARKS</name>
<title>备注</title>
<columnType>TEXT</columnType>
<length>500</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>4acff1e2-560f-46d0-a937-d0b93a5d6841</id>
<name>AWS_IN_36554669B514</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,243 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>c15fc899-941a-42f6-ba3c-b72029e1ae3f</id>
<createUser>admin</createUser>
<createTime>2022-10-28 17:29:49</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-02 12:15:27</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr3SyxrdZbejWVEcffzXmnFAZqQLJ0X2IuSPKFmjsSjDLFW43Pm0PVW2yDt+s69LwH</signature>
<managed>false</managed>
<title>模型编号刷新记录</title>
<name>BO_EU_PAL_NOREFRESH</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>文件处理</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>b50ac29a-3d5c-4eb1-bc42-2ae2d5960a23</id>
<name>PLNAME</name>
<title>模型名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>5368044f-e974-4c55-9c8a-7c58d3fbe35f</id>
<name>FRAMEWORK</name>
<title>架构名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>c8791af9-59a0-48e7-96d9-7dfe548e6d01</id>
<name>VERSION</name>
<title>版本号</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>f143f6de-11c1-450e-b903-d37d4406f138</id>
<name>TYPE</name>
<title>模型类型</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>a8a41c8b-ab6c-46f1-84f8-b377b46aab2a</id>
<name>ISPUBLISH</name>
<title>是否发布</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>5ee18018-b13f-42cc-9b7e-b925247fd28c</id>
<name>PLID</name>
<title>模型ID</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>0bf562ed-a1b2-4cae-a256-3769e51f9c8f</id>
<name>RESULT</name>
<title>刷新结果</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>d77414c6-a11b-4109-83d2-1609c35a6968</id>
<name>RESULTSTR</name>
<title>返回结果记录</title>
<columnType>TEXT</columnType>
<length>2000</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>04c9137d-f16c-4f0a-8e68-f551da6ee119</id>
<name>AWS_IN_2353BAF2BABC</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>c23af0a0-f19d-4b03-b2d8-8e6a6303c3b7</id>
<createUser>admin</createUser>
<createTime>2022-10-08 18:19:03</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-08 18:19:55</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrkRcTfTKcjRTSJc+9Xir4/bkCmBLuG2kWTwLqqwIYYCKOQbBAQjS12Y16Lz760bUS</signature>
<managed>false</managed>
<title>文件状态更新</title>
<name>BO_EU_PAL_SATE</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>文件处理</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>16c30807-0bd3-43d0-ab7a-4747a5d83e12</id>
<name>USERNAME</name>
<title>发起人</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>f75bcfa3-06d0-48cc-93a5-bea670da4324</id>
<name>CREATETIME</name>
<title>创建日期</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>72487484-9668-4ef9-9fb4-4de32acdbc28</id>
<name>AWS_IN_7E498EF6318E</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,165 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>ce01c5ab-af41-43e7-996a-ee7fe12f9842</id>
<createUser>admin</createUser>
<createTime>2022-11-04 17:49:29</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-04 17:51:38</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrUM9qdDs49JLlT+VyfBQzCtRm/vYfYfeUpb8QZxHIOgIEe+AnSMJZkbEP2iip4alX</signature>
<managed>false</managed>
<title>待阅文件统计</title>
<name>BO_EU_PAL_SEND_OA_COUNT</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>待办待阅</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>2beec695-98f8-45d0-ae36-f5cf1ccd515e</id>
<name>TITLE</name>
<title>文件标题</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>37f051ef-b470-4edc-b79a-01fe514de93f</id>
<name>YGNUM</name>
<title>应该推送的人数</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>17bfceb5-2b17-498a-8687-55d2ee4f69f7</id>
<name>SJNUM</name>
<title>实际推送人数</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>ea60d0f8-8a8c-44c1-91ee-a727d94ff16d</id>
<name>TIME</name>
<title>推送时间</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>0bb831b2-c6c7-4a0e-91b9-80e54597b7f3</id>
<name>NAME</name>
<title>发布人</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>6bc7ee35-2c63-4686-a1bf-4f6fc4c4d548</id>
<name>AWS_IN_0F16C5243E3A</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,139 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>cea1b185-e136-40db-9c78-1e1960259906</id>
<createUser>admin</createUser>
<createTime>2022-10-08 16:36:04</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-08 16:36:14</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrjvueaO4iSDlLh9v2JV9aHQzAgek5DhRI7EhkSM1fqYaHNbEciz3nJNBAzWI4/RFG</signature>
<managed>false</managed>
<title> 批量发布过滤表</title>
<name>BO_EU_BATCH_PUBLIS_NL</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>文件处理</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>e6fb3504-d7c5-417d-89f5-a51cc0b87d35</id>
<name>FRAMEWORKNAME</name>
<title>所属架构</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>289ee407-fcfe-44c2-9496-1765c7f11c92</id>
<name>PLNAME</name>
<title>文件名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>db55a841-cdb2-4c43-893e-b8f78f5b3759</id>
<name>ISPUBLISH</name>
<title>是否发布</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.ComboBox</componentId>
<componentSetting>{"placeholder":"","boItemId":"c304434f-3c94-476a-9cfc-c862e7af4925","isAdvance":false,"dataType":"sampleText","data":"否|是","mode":"common","exportDataValidity":true,"setunival":true,"boUrlFormData":{"hrefSelVal":"nothing"}}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>55a95463-9434-4277-89a7-ffc514d4fc11</id>
<name>PLID</name>
<title>文件id</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>2f8ceec9-05b0-46d6-b2d7-68e4672f8b3c</id>
<name>AWS_IN_D3B1F10EB3CE</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>db21b816-bb47-4732-a2aa-f84432e1be64</id>
<createUser>admin</createUser>
<createTime>2022-11-08 18:57:19</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-11 13:30:50</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrPYftT0uteVD4XioLpqQ8suLbZ3ZLJYMAZS5YD++Aa/OC4jzrt+ue20ZywHJd9FYs</signature>
<managed>false</managed>
<title>测试表</title>
<name>BO_EU_TEST_01</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>待办待阅</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>a251b9e0-ac77-4c7e-98ef-133f992cb8ed</id>
<name>TEST1</name>
<title>测试字段1</title>
<columnType>TEXT</columnType>
<length>2000</length>
<nullable>true</nullable>
<defaultValue>111</defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>f253b46c-9cfc-4ac8-8b9b-7efcba1f2b7f</id>
<name>TEST2</name>
<title>测试字段2</title>
<columnType>BIGTEXT</columnType>
<length>200000</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0","placeholder":"","dataType":"localJDBC","data":{"sql":""},"isClearAllText":true,"barCode":false,"boUrlFormData":{"hrefSelVal":"nothing"},"extendType":"text","scanCodeAutoSubmit":false}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>670d6baf-122c-4ff2-bee6-ae56f781b2bc</id>
<name>AWS_IN_5F00CF983124</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,165 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>e407996d-58c4-4964-a907-fafbb050ed63</id>
<createUser>admin</createUser>
<createTime>2022-11-10 21:32:53</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-10 21:54:17</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrpFs9EcYRRhhn4Odef/cnPh4Hxf9nQq5fFsmqgkEUa0jCOBY5iadI+keJbHJI8sBu</signature>
<managed>false</managed>
<title>用户系统登录日志</title>
<name>BO_EU_SYS_LOGIN_LOG</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>待办待阅</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>8da87ee1-6f59-4255-8f85-37f867bba201</id>
<name>USERID</name>
<title>登录账号</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>03df7d89-b53b-4bf2-8ad6-c710cc4dc6bb</id>
<name>LOGTIME</name>
<title>登录时间</title>
<columnType>DATE</columnType>
<length>0</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Date</componentId>
<componentSetting>{}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>a40ff9b3-1013-4dff-bf03-56c48b231c47</id>
<name>USERDEP</name>
<title>部门名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>2b4fca45-f105-452e-a010-8fc68b13bce5</id>
<name>USERBU</name>
<title>事业部名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>990b8045-720d-4abe-a4ad-f276401afb7a</id>
<name>USERPOST</name>
<title>岗位名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>6049f4eb-1fc1-495e-8679-e5c640695d6f</id>
<name>AWS_IN_E42399356FC8</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,113 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>eb96d7bd-37da-4c8c-9763-6246a5de81dc</id>
<createUser>admin</createUser>
<createTime>2022-10-09 21:20:31</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-09 21:21:58</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrm7Ap+WY7+UBkR5CpOkc/XnuYKuuVIajP4pNC7up3yobJqHQ7TdGEiRuEwOcmbUTb</signature>
<managed>false</managed>
<title>制度手册生成错误记录</title>
<name>BO_EU_PAL_OUT_ZD</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>权限处理</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>2364dc24-3330-40ca-9f52-529274317867</id>
<name>PLNAME</name>
<title>文件名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>70a5b9ff-a993-4679-972c-515f3d685dc1</id>
<name>PLID</name>
<title>文件id</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>8e913339-423e-4b53-8725-6b7f33874822</id>
<name>ERROR</name>
<title>报错信息</title>
<columnType>TEXT</columnType>
<length>2000</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>14d8dd91-c12f-4cba-9410-55c171e34e1a</id>
<name>AWS_IN_1D123C1D55E5</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,165 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>f1531b24-fe88-4d6a-a7ce-6cde9ade9c6a</id>
<createUser>admin</createUser>
<createTime>2022-10-09 09:04:30</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-09 09:04:30</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrHsajck9EvGFZVXbIQ0F0b0lWdOeqymUNRn/L+uY0hQ5aVZlgxXQMRQnQ1k08lKKs</signature>
<managed>false</managed>
<title>空文件记录</title>
<name>BO_EU_PAL_NULL_FILE</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>文件处理</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>df5c1e93-8423-4208-b9af-6c0d4e1c50f0</id>
<name>PLNAME</name>
<title>模型名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>8b64fc76-8be3-40d7-a4ff-130618cdc45f</id>
<name>FRAMEWORK</name>
<title>架构名称</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>dc358efb-49f0-4053-a338-94b1b345b5b4</id>
<name>VERSION</name>
<title>版本号</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>a15ebb36-27e8-41f5-b031-4ac0428ff52e</id>
<name>TYPE</name>
<title>模型类型</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>f04edf38-7bd7-4933-821b-41cbc0fa3c68</id>
<name>ISPUBLISH</name>
<title>是否发布</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>3f8ab66c-af1e-4e3a-9423-3c91ec1e6f38</id>
<name>AWS_IN_CD17D2709D42</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,425 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<boModel>
<id>f17c4bf4-67d2-4d33-8b05-055e258c6fc2</id>
<createUser>admin</createUser>
<createTime>2022-11-07 09:35:24</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-08 17:07:20</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrVe4S2yn1JjIbz0tq0/PZqUmhz9nG1aiUTBDT/5/Lzv/Llb09+BLaKli4j27HZa5a</signature>
<managed>false</managed>
<title>发布成功回执</title>
<name>BO_EU_PAL_PULBISH_SUCCESS</name>
<collection>false</collection>
<system>false</system>
<deleted>false</deleted>
<categoryName>待办待阅</categoryName>
<administrator>admin</administrator>
<entityType>TABLE</entityType>
<viewType></viewType>
<viewSql></viewSql>
<securityLevel>0</securityLevel>
<target>_local</target>
<itemProps></itemProps>
<boItems>
<boItem>
<id>32bc5b41-c0a9-449e-9f8b-61fb1b6848d9</id>
<name>USREID</name>
<title>发布人账号</title>
<columnType>TEXT</columnType>
<length>36</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Address</componentId>
<componentSetting>{"placeholder":"","addressType":"user","isLiveSearch":true,"isAdvMode":false,"addressSetting":{"isMapFormat":false,"delimiter":" ","choiceType":"multiple"},"deptSourceField":"","deptTargetField":""}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>56c8427d-d360-48cc-800b-eb0d4dac1229</id>
<name>DEPID</name>
<title>部门ID</title>
<columnType>TEXT</columnType>
<length>36</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Address</componentId>
<componentSetting>{"placeholder":"","addressType":"dept","isLiveSearch":true,"addressSetting":{"delimiter":",","choiceType":"single","leafType":"dept"},"range":"all","isFullDeptPath":false,"deptSourceField":"DEPTID","deptTargetField":"DEPID"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule>{"type":"org","orgtype":"dept"}</displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>4ac2bd65-871b-4ce8-bf71-f68923ee112c</id>
<name>BUNAME</name>
<title>事业部名称</title>
<columnType>TEXT</columnType>
<length>36</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>c4530591-1212-4a45-823a-32a43b5e83ea</id>
<name>TITLE</name>
<title>发布文件标题</title>
<columnType>TEXT</columnType>
<length>500</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>92d71f4c-509c-4fd7-ae1c-ba1d38509d85</id>
<name>PROCESSID</name>
<title>发布流程实例Id</title>
<columnType>TEXT</columnType>
<length>36</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>fb3fdebc-87f7-4303-bc51-a84fd66f7278</id>
<name>SENDNUM</name>
<title>应发人员总数</title>
<columnType>NUMBER</columnType>
<length>10</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>80</columnWidth>
<componentId>AWSUI.Number</componentId>
<componentSetting>{}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>9be813b1-036d-4a70-aa27-177f44136105</id>
<name>SENDNUMSJ</name>
<title>实际发送人员总数</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>f05982b7-2dcf-4d68-91b9-3ccefb0891bd</id>
<name>READNUM</name>
<title>已读人数</title>
<columnType>NUMBER</columnType>
<length>10</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>80</columnWidth>
<componentId>AWSUI.Number</componentId>
<componentSetting>{}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>338f81e5-1bee-4e7d-9e77-d799d27eb959</id>
<name>SEND_SCOP</name>
<title>是否发送全公司</title>
<columnType>TEXT</columnType>
<length>36</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.ComboBox</componentId>
<componentSetting>{"placeholder":"","boItemId":"cde0cf5a-7b48-4fba-90ee-dbfcb09ace84","isAdvance":false,"dataType":"sampleText","data":"1:是|0:否","mode":"common","exportDataValidity":true,"setunival":true,"boUrlFormData":{"hrefSelVal":"nothing"}}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>71b531cc-8ecd-4fd3-b806-6dd777b1c2c3</id>
<name>SEND_SCOPE_ORGNUM</name>
<title>发送组织数量</title>
<columnType>NUMBER</columnType>
<length>10</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>80</columnWidth>
<componentId>AWSUI.Number</componentId>
<componentSetting>{}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>02eb5ee4-0713-4d14-9215-a801e0e27aec</id>
<name>SEND_SCOPE_POST_NUM</name>
<title>发送岗位数量</title>
<columnType>NUMBER</columnType>
<length>10</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>80</columnWidth>
<componentId>AWSUI.Number</componentId>
<componentSetting>{}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>81e0b099-352f-4a07-aab8-dd0a9fb330bb</id>
<name>SEND_SCOPE_LEVEL_NUM</name>
<title>发送职级数量</title>
<columnType>NUMBER</columnType>
<length>10</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>80</columnWidth>
<componentId>AWSUI.Number</componentId>
<componentSetting>{}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>fd55e766-c356-4317-b656-09af3abadd7a</id>
<name>TIMECOUNT</name>
<title>总共用时</title>
<columnType>TEXT</columnType>
<length>128</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.Text</componentId>
<componentSetting>{"search":"0"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>ee751a98-67c4-4c99-981a-4c2463739b9b</id>
<name>STARTTIMES</name>
<title>开始时间</title>
<columnType>DATE</columnType>
<length>0</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.DateTime</componentId>
<componentSetting>{"placeholder":"","minDate":"","maxDate":"","showtype":"doubleCalendar","advSetting":"","dateFmt":"yyyy-MM-dd HH:mm:ss","showDayOfWeek":"false","dwfmt":"(EE)"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
<boItem>
<id>b51d20d8-1403-4a30-9883-06c362075531</id>
<name>ENDTIMES</name>
<title>结束时间</title>
<columnType>DATE</columnType>
<length>0</length>
<nullable>true</nullable>
<defaultValue></defaultValue>
<columnWidth>100</columnWidth>
<componentId>AWSUI.DateTime</componentId>
<componentSetting>{"placeholder":"","minDate":"","maxDate":"","showtype":"doubleCalendar","advSetting":"","dateFmt":"yyyy-MM-dd HH:mm:ss","showDayOfWeek":"false","dwfmt":"(EE)"}</componentSetting>
<display>true</display>
<deleted>false</deleted>
<modify>true</modify>
<componentExtendCode></componentExtendCode>
<persistenceType>ENTITY</persistenceType>
<validateType></validateType>
<validateRule></validateRule>
<validateTip></validateTip>
<validateErr>0</validateErr>
<tooltip></tooltip>
<copy>false</copy>
<displayRule></displayRule>
<calcFormula></calcFormula>
<propsVal>{}</propsVal>
</boItem>
</boItems>
<boIndexs>
<boIndex>
<id>dfb87a06-a1fc-4ec5-b459-ae39ab2b5d8f</id>
<name>AWS_IN_EE34885DA5B7</name>
<type>INDEX</type>
<boItems>BINDID</boItems>
</boIndex>
</boIndexs>
<boRelations/>
<hashFields></hashFields>
</boModel>

View File

@ -0,0 +1,61 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_2521be8c988942109be6c7dd41a358c5</id>
<createUser>admin</createUser>
<createTime>2022-11-09 19:56:43</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-20 11:32:44</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr3VrbwLvWLa3SYtgGSHYTbiTmYlaRF1/1ZG/NzeSOw7yScTiv5aSTKdSSsOMmPgi9</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_2521be8c988942109be6c7dd41a358c5</processGroupId>
<processGroupName></processGroupName>
<categoryName>待办待阅</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_316f1685bedc4368aa67afae7b73b82b" label="流程制度文件发布统计" extendcode="" event=""/>
<dataView id="obj_2be0a2bc94bc4183928100accb2f11bc" label="统计表" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams>%7B%22dataMode%22%3A%7B%22mobile%22%3A%7B%22type%22%3A%22list%22%2C%22templateJSON%22%3A%7B%22children%22%3A%5B%7B%22children%22%3A%5B%7B%22children%22%3A%5B%7B%22field%22%3A%22DW-NO-CONTENT%7Etitle%22%2C%22style%22%3A%7B%22color%22%3A%22%233383da%22%2C%22fontSize%22%3A%2214px%22%2C%22fontWeight%22%3A%22bold%22%7D%2C%22id%22%3A%22obj_c2f4b1dd7463437fadb9d5e840d05f80%22%7D%5D%2C%22span%22%3A14%2C%22id%22%3A%22obj_5647dd3e80a4429f85cbc5c6a4bb3e1b%22%7D%2C%7B%22children%22%3A%5B%7B%22field%22%3A%22DW-NO-CONTENT%7Edate%22%2C%22id%22%3A%22obj_9e914938183d4dc19123b0fcbaeb835a%22%7D%5D%2C%22style%22%3A%7B%22textAlign%22%3A%22right%22%7D%2C%22span%22%3A10%2C%22id%22%3A%22obj_11aa9e083bd743f5ad323861a087e345%22%7D%5D%2C%22id%22%3A%22obj_99d619e917a145c3809a156f401a3587%22%7D%2C%7B%22children%22%3A%5B%7B%22children%22%3A%5B%7B%22field%22%3A%22DW-NO-CONTENT%7Econtent%22%2C%22id%22%3A%22obj_1c6c158fe2a742ebab37e8b46eb78ed6%22%7D%5D%2C%22id%22%3A%22obj_efc2ab59234f40e7bde02cf0204aec1c%22%7D%5D%2C%22id%22%3A%22obj_97c63588ffa14733a916a2c8b19fa24c%22%7D%2C%7B%22children%22%3A%5B%7B%22children%22%3A%5B%7B%22field%22%3A%22DW-NO-CONTENT%7Eremarks%22%2C%22style%22%3A%7B%22fontSize%22%3A%2212px%22%7D%2C%22id%22%3A%22obj_d2b23288243c426fa2c443489cc543d3%22%7D%5D%2C%22id%22%3A%22obj_50f1ceb0330647a8be0dd851530e7073%22%7D%5D%2C%22style%22%3A%7B%22marginTop%22%3A%2212px%22%7D%2C%22id%22%3A%22obj_b49e11ce8ea4474f993743e8a64b5b49%22%7D%5D%2C%22id%22%3A%22obj_0e3e5674297f4fcbada37e100f4c7a6c%22%7D%7D%2C%22pc%22%3A%7B%22type%22%3A%22table%22%2C%22templateJSON%22%3A%7B%7D%7D%7D%2C%22dataModeBack%22%3A%7B%22pc%22%3A%7B%7D%2C%22mobile%22%3A%7B%7D%7D%7D</dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_0af133776c2f4f3fb64d3f20458bfdce" isshow="true" extendcode="" event="">
<button id="obj_60fff7abe4d64b439410661ef73edcd8" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_19d45f4e3ce0414198139aa44f95c32c" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_e0cbe111971a49a4b47b37a12b0bf001" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_daa02c1a93ed451e98a7cd4dfc0be1f8" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_a6b3fdb70ee74341ac2b8e5a196bb4d3" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_3f5e0d7911f84559ac7b90b75bf03888" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_dda53f6829974d07b172dc0be8ee3066" isshow="true" layoutType="tile" tdGroup="4" tileLayout="x" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="true">
<likecondition id="obj_bc486fc68df149bf9607989152766af2" field="USER_ID" extend1="" label="接收人" comparetype="=" uiname="TEXT" relationship="" uidefault="" uicomponent="地址簿" uiref="{&quot;placeholder&quot;:&quot;&quot;,&quot;addressType&quot;:&quot;user&quot;,&quot;isLiveSearch&quot;:true,&quot;isAdvMode&quot;:false,&quot;addressSetting&quot;:{&quot;isMapFormat&quot;:false,&quot;delimiter&quot;:&quot; &quot;,&quot;choiceType&quot;:&quot;single&quot;},&quot;deptSourceField&quot;:&quot;&quot;,&quot;deptTargetField&quot;:&quot;&quot;}" required="false" security="" orderindex="0" event=""/>
<likecondition id="obj_30fff6c81b414d4492741827b49f9439" field="READSTATE" extend1="" label="阅读状态" comparetype="=" uiname="TEXT" relationship="" uidefault="" uicomponent="列表" uiref="{&quot;type&quot;:&quot;NORMAL&quot;,&quot;cons&quot;:&quot;未读:未读|已读:已读&quot;,&quot;showAdv&quot;:false}" required="false" security="" orderindex="1" event=""/>
</searcher>
<navTree id="obj_0950f8022d0a434da04f892e34835b3e" isshow="true" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_0d35fce3941948bea27994a67af9d07f" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_a99053fd49cd4c10a0d7ba6f4e831448" isshow="true" autoSearch="true" customSet="true" select="false" datasource="sql:SELECT * FROM BO_ACT_DATAID" countSql="" pagesize="200" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="2f27d564-70f6-440b-8bda-e6ad5cdc0cf6" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="253" colALias="" colTableAlias="" colTable="BO_ACT_DATAID" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="TITLE" label="文件标题" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="78c0f98b-7d19-4a54-bff8-2854af8b312c" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="87" colALias="" colTableAlias="" colTable="BO_ACT_DATAID" length="36" required="0" align="center" showrule="{&quot;type&quot;:&quot;org&quot;,&quot;orgtype&quot;:&quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="CREATEUSER" label="发布人" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="0e624844-f468-4eb3-a91c-cc81269eed52" sort="desc" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="179" colALias="" colTableAlias="" colTable="BO_ACT_DATAID" length="7" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="CREATEDATE" label="发送时间" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="afd8e308-a31d-4afb-89c8-258ae04c33cd" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="86" colALias="" colTableAlias="" colTable="BO_ACT_DATAID" length="128" required="0" align="center" showrule="{&quot;type&quot;:&quot;NORMAL&quot;,&quot;cons&quot;:&quot;true:成功&quot;,&quot;showAdv&quot;:false}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="RESULT" label="发送结果" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="c15ea41b-8286-448a-a6f1-65284a339479" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="95" colALias="" colTableAlias="" colTable="BO_ACT_DATAID" length="128" required="0" align="center" showrule="{&quot;type&quot;:&quot;org&quot;,&quot;orgtype&quot;:&quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="USER_ID" label="接收人" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="5a036974-88b7-4374-9775-06d0c56eb83b" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="110" colALias="" colTableAlias="" colTable="BO_ACT_DATAID" length="128" required="0" align="left" showrule="{&quot;type&quot;:&quot;org&quot;,&quot;orgtype&quot;:&quot;dept&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="USERDEP" label="接收人部门" orderindex="5" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="bc1c99b0-b14c-4bdc-a5d9-732673f6943e" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="91" colALias="" colTableAlias="" colTable="BO_ACT_DATAID" length="128" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="READSTATE" label="阅读状态" orderindex="6" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="872f3cb2-f145-4c89-bb90-7ba22cedecd5" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="140" colALias="" colTableAlias="" colTable="BO_ACT_DATAID" length="7" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="READTIMES" label="阅读时间" orderindex="7" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="1945f96a-9ca2-4e4b-8567-da2265d1bf29" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="95" colALias="" colTableAlias="" colTable="BO_ACT_DATAID" length="39" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="READCOUNT" label="阅读次数" orderindex="8" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="be0ad291-b6df-4e94-946c-4f77e31a5857" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="110" colALias="" colTableAlias="" colTable="BO_ACT_DATAID" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ID" label="ID" orderindex="9" colbehaviortarget="" ishidden="true" export="true" backHide="false" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="9dea0252-4e5f-406c-81c2-8b36a583fcc3" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_ACT_DATAID" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PROCESSID" label="PROCESSID" orderindex="10" colbehaviortarget="" ishidden="true" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_35c0ed6d08b8439f9f8ef5fcef01ab27</id>
<createUser>admin</createUser>
<createTime>2022-10-24 20:10:39</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-24 20:13:29</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrts8XCtAMYaozR+HcVeQN8pUm1n7A5r9Tx8sEybxQRUJdM4lFlqrU9Xf7S3IK/Q1u</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_35c0ed6d08b8439f9f8ef5fcef01ab27</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_db97fd04633e4d45b70ee3b00f29252c" label="空模型统计" extendcode="" event=""/>
<dataView id="obj_08c374e2f752428591fb473109f8e70f" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_5a16cb7a406b4b50b190660bfa66cb4c" isshow="true" extendcode="" event="">
<button id="obj_63cf860b4ae144fc83a9e48a029935ec" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_64493e5167b443f09da94d372544fd40" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_0caab39f0d2440b3a884f559b03b7039" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_45c0d216ad2c4244b57ed7ee44ec3626" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_6a9d6d2a780644cf887bdb4d04c2d276" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_24d91ea0a2234a158b0e788e0a968b41" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_c13d9988551a4e70bb32c4adc0b80f98" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_483f8efdfcf04aaf9c472670e9fbf4fe" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_bea55d0cf7134002a4596eef047e075c" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_d27cba57048a4f46bde603bb422a31d5" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU__PAL_NULL_L" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="3e93060c-6406-46a7-89fd-fb345cb84b9b" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="261" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLNAME" label="模型名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="2bf7c7d1-3b17-40c2-b314-78b06034e4fe" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="189" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="FRAMEWORK" label="架构名称" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="6cfce913-efd5-41b9-a9d6-5d36cbb8ef9b" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="VERSION" label="版本号" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="86a66781-056e-4464-8147-63dad81a927c" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="TYPE" label="模型类型" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="5f6644df-2cb3-4968-93c5-8c9286a0fa62" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ISPUBLISH" label="是否发布" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="89226d46-95c4-4bf7-82d8-a13001d4e73a" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="false" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="f94ac2b2-5c1e-4656-ba6a-5c80af0aeda3" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="6" colbehaviortarget="" ishidden="false" export="false" backHide="false" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="45c9fd90-41b2-41a4-86e1-98d6645068c2" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="false" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="1756804c-1e8f-4a93-92be-a3dccb5fa0b2" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="false" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="21efef66-517d-45a6-8d7c-fd1c8842df67" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="false" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="980b8103-886f-4504-8bbb-d92f7beb2a9f" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="false" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="454c7089-f08a-4c8b-ac11-6fd48d533ba2" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="3054f31e-969b-433b-ab1f-8dc6e46b70f2" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="12" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_360ee5ef449d442d95292a8a60f1f7fd</id>
<createUser>admin</createUser>
<createTime>2022-11-04 17:56:02</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-05 12:09:33</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr71CrsbC1isXmp80isePuPSxV/jQdl+ZAxI1A+ihVFxAYcvLfUTtNlRgAh4XZnGsR</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_360ee5ef449d442d95292a8a60f1f7fd</processGroupId>
<processGroupName></processGroupName>
<categoryName>待办待阅</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_7daf76d526794a6eba2c5c9d0164849b" label="待阅文件统计" extendcode="" event=""/>
<dataView id="obj_2d7811024f264430a3bea96bdfe73fe5" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_c57998599ef04c439cad78bfec93b91c" isshow="true" extendcode="" event="">
<button id="obj_02ad06af3ae64441a5e5e43525a4b673" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_4a86a46ab1424ab4a7e3aa57c262620b" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="2" mobileShow="false" event="" selectShow="false"/>
<button id="obj_8ef63417939b4c7eb9ad5d66a2e903c6" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="3" mobileShow="false" event="" selectShow="true"/>
<button id="obj_1421cb3266cc414a904b9117274c7dbc" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_067a24a536fc4d3e8d016952ebb5117e" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_b29359eee5f84dc89d9883329ac702b4" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="6" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_8cb3124951944d97b9140ce977d4d310" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false">
<likecondition id="obj_cf0b027748984b0781f4df65be64fba3" field="TITLE" extend1="" label="文件标题" comparetype="like" uiname="TEXT" relationship="" uidefault="" uicomponent="文本" uiref="" required="false" security="" orderindex="0" event=""/>
</searcher>
<navTree id="obj_63ec126a8055447684852b8c1b2828b2" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_7e602300353249049518632fff71d33d" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_0643c13bb5494da6aa63d65c4b86c918" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_SEND_OA_COUNT" countSql="" pagesize="100" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="f2ae5795-a970-4ad5-b5b8-dcfc7263fae4" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="89" colALias="" colTableAlias="" colTable="BO_EU_PAL_SEND_OA_COUNT" length="128" required="1" align="left" showrule="{&quot;type&quot;:&quot;org&quot;,&quot;orgtype&quot;:&quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="NAME" label="发布人" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="1da9436e-0ff7-4183-a54c-a141fa379f1f" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="572" colALias="" colTableAlias="" colTable="BO_EU_PAL_SEND_OA_COUNT" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="TITLE" label="文件标题" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="1febe8b9-a8b4-4e72-a565-9ff6dcef0961" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="128" colALias="" colTableAlias="" colTable="BO_EU_PAL_SEND_OA_COUNT" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="YGNUM" label="应该推送的人数" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="5f5d8ced-a8a2-4401-ac3b-21bf15ea0309" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="114" colALias="" colTableAlias="" colTable="BO_EU_PAL_SEND_OA_COUNT" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="SJNUM" label="实际推送人数" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="78e1da7a-3159-4c6e-8fe3-0a4a59f1b5ba" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="193" colALias="" colTableAlias="" colTable="BO_EU_PAL_SEND_OA_COUNT" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="TIME" label="推送时间" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="1349aeb4-27f1-47c4-bf76-0e0858ac45e1" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_SEND_OA_COUNT" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="c7fdc564-e0a3-487d-94f5-c4cd11c02150" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_PAL_SEND_OA_COUNT" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="25004a20-3865-420b-b406-f1e0143313d8" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_SEND_OA_COUNT" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="a38e852a-8874-4f8b-83ae-9b74d0e8bdd5" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_PAL_SEND_OA_COUNT" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="4365f86a-0571-4bd7-ab45-49eb7c58dc2a" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_SEND_OA_COUNT" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="222fd530-767e-4c55-ba95-e0b6facea4ae" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_SEND_OA_COUNT" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="5045346d-1453-4050-a61c-4ee142c27308" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_SEND_OA_COUNT" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="a3aacc29-eaf6-48ab-9ecc-8c6e46e90b0e" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_SEND_OA_COUNT" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="12" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_3f7b624f617f4be38566e22175516284</id>
<createUser>admin</createUser>
<createTime>2022-10-18 15:58:23</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-18 15:59:24</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrExRMEva6zCpDL/48XHt1dgr6g4gzj8TKXeZyxduhcFPkhID21WtnwnDZqpxy6aRc</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_3f7b624f617f4be38566e22175516284</processGroupId>
<processGroupName></processGroupName>
<categoryName>手册日志</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_4934f65f2e424d9a8a2781ca2ff53f9b" label="文件手册清单视图" extendcode="" event=""/>
<dataView id="obj_81a6a4312bd541bd9f4c9eb4ae8f1856" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_d476c6946c84498ebe8ec65607712e72" isshow="true" extendcode="" event="">
<button id="obj_428c9a967c31476798f8096181036cba" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_5341851beee1485896fd0ce72e0ea928" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="2" mobileShow="false" event="" selectShow="false"/>
<button id="obj_d7aa8b8c139e4ea7bcfc74fcf4495c93" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="3" mobileShow="false" event="" selectShow="true"/>
<button id="obj_386576d2f8f842389898fc1eefcd0988" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_5e6e6a7905c0411594e5c2c6175d0ef4" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_420e363350094d8cb863b87b90b148ef" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="6" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_702686663a764eb8981f0cf0584e6d55" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false">
<likecondition id="obj_97960fe469fe4efe98bc744ca16959b2" field="PID" extend1="" label="PID" comparetype="=" uiname="TEXT" relationship="" uidefault="" uicomponent="文本" uiref="" required="false" security="" orderindex="0" event=""/>
<likecondition id="obj_0858995a844f4106ba41123edef0179b" field="TASKID" extend1="" label="TASKID" comparetype="=" uiname="TEXT" relationship="" uidefault="" uicomponent="文本" uiref="" required="false" security="" orderindex="1" event=""/>
</searcher>
<navTree id="obj_7f91ef7ad23c46f2aa3bc0cd159a7dc5" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_7bb776bc919e4a98bcbc35b00fe27a57" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_61454befe15240e3a6c042b95227ca9e" isshow="true" autoSearch="true" customSet="true" select="false" datasource="sql:SELECT * FROM app_act_coe_pal_publish_list" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="8da8255b-162e-4209-90ed-8150ce715294" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="110" colALias="" colTableAlias="" colTable="APP_ACT_COE_PAL_PUBLISH_LIST" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PID" label="PID" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="b6744000-44ab-44b6-8063-b27932b3e8cb" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="110" colALias="" colTableAlias="" colTable="APP_ACT_COE_PAL_PUBLISH_LIST" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PALREPOSITORYID" label="PALREPOSITORYID" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="60f5c819-d76a-43fe-a7e8-7ecb88b9472c" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="60" colALias="" colTableAlias="" colTable="APP_ACT_COE_PAL_PUBLISH_LIST" length="1" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ACTIONTYPE" label="ACTIONTYPE" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="054a8396-b312-4f10-9f17-c6887cd2c48e" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="200" colALias="" colTableAlias="" colTable="APP_ACT_COE_PAL_PUBLISH_LIST" length="255" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PUBLISHDESC" label="PUBLISHDESC" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="99be6816-46e1-4a47-bcb6-c6f22c476a6e" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="234" colALias="" colTableAlias="" colTable="APP_ACT_COE_PAL_PUBLISH_LIST" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="TASKID" label="TASKID" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="f0c8d302-1687-49ed-a20d-e7a006e10d4f" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="321" colALias="" colTableAlias="" colTable="APP_ACT_COE_PAL_PUBLISH_LIST" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ID" label="ID" orderindex="5" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_41a06cf29dc64bdc8369db4505d75222</id>
<createUser>15600221563</createUser>
<createTime>2022-10-17 17:29:43</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-09 14:53:02</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr7dJg6pouGCzgCJ64d7vlfrYCqCfgme+GoV7wyinsbN9Lcxel2ueco9OGW3jTMTpD</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_41a06cf29dc64bdc8369db4505d75222</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>15600221563</processAdministrator>
<title id="obj_b9f7b9a55d254202bd2e670d6c8ea152" label="文件批量发布" extendcode="" event=""/>
<dataView id="obj_913c3ec680fd4d7091304693cbb33daf" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_61cc801711a5433c982762b781e9fcab" isshow="true" extendcode="" event="">
<button id="obj_5fd1bfd0803e40809ec5fce05f06a54b" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_1d570ff71c1c4f4d94cc23609878a758" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_edb3fdfe0cfa4dc5863a8c5b1683fcb8" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_ce254a643cfe4f43b8019a8f5f63c3bb" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_6183741273244a3c9558174c85e0abc6" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_4701b1b9211f4502a0ecb9c1b6585274" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_09126bb0667b4faa882703d2ec9e1085" refbuttonid="importDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="6" config="[{&quot;btnName&quot;:&quot;&quot;,&quot;formDefId&quot;:&quot;obj_1914eba9d2f14e8ea41da65f3eec7fce|c5633ef8-8bef-4eae-9ca1-0f7be5d85232&quot;,&quot;formName&quot;:&quot;PAL文件批量发布&quot;,&quot;formExcelShowName&quot;:&quot;文件批量发布&quot;,&quot;maxRow&quot;:&quot;20000&quot;,&quot;javaEvents&quot;:[],&quot;enableAddImport&quot;:true,&quot;enableupdateimport&quot;:false,&quot;requiredImport&quot;:false,&quot;importStrategy&quot;:{&quot;addImport&quot;:{&quot;strategybase&quot;:&quot;onlyimportdata&quot;,&quot;boModels&quot;:[{&quot;boDefName&quot;:&quot;BO_EU_PAL_PLFB&quot;,&quot;boItems&quot;:[{&quot;name&quot;:&quot;FRAMEWORKNAME&quot;,&quot;title&quot;:&quot;所属架构&quot;},{&quot;name&quot;:&quot;PLNAME&quot;,&quot;title&quot;:&quot;文件名称&quot;},{&quot;name&quot;:&quot;ISPUBLISH&quot;,&quot;title&quot;:&quot;是否发布&quot;},{&quot;name&quot;:&quot;PLID&quot;,&quot;title&quot;:&quot;文件id&quot;}]}]}}}]" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_10e4f33b01624e1790f8c148b5d36a8b" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_6580f156aa3e463588e372b2dc4f6da8" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_0c2fe4b6989c4a0f8e718c1c9c2a3c30" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_234e499976c34b4bba1f93dbb392c8d6" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_PLFB" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="obj_12f60462963c45e2abdedc5a3bf526e3" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="167" colALias="" colTableAlias="" colTable="BO_EU_PAL_PLFB" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="FRAMEWORKNAME" label="所属架构" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_d4f7f8952606412c8da479afcc696e1c" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="334" colALias="" colTableAlias="" colTable="BO_EU_PAL_PLFB" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLNAME" label="文件名称" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_d6d635152ba3416395844ba7c726b0e9" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="167" colALias="" colTableAlias="" colTable="BO_EU_PAL_PLFB" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ISPUBLISH" label="是否发布" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.ComboBox" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_c512afc42a1f4910b75a2e70d61b0739" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="172" colALias="" colTableAlias="" colTable="BO_EU_PAL_PLFB" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLID" label="文件id" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_7dc4537c9db148b28bffa230f6dfa138" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_PLFB" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="4" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_946a934cd5f843a18b838ff2a44898ca" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_PLFB" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_0b9d0083780e4f689ea4b5dc6612c3e7" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_PLFB" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_97cf63f471284498a05bda4280168955" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_PLFB" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_7c513a1f9eb643ef8dbf093323899a0e" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_PLFB" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_f7d0ec3e109245ea885c366ef86a7fc0" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_PLFB" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_fd6bc1362d9247b285e4f7787ff0a585" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_PLFB" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_26898280228f424cb3d8c99e3aa419e2" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_PLFB" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,71 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_4696c49b0fe64a56b2556a893491b75f</id>
<createUser>admin</createUser>
<createTime>2022-10-12 15:40:27</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-14 19:28:53</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrc+4RosaCQpxbUXcOYBDbDFWgA/yMDOJ54QhhZzkWFJzTFw+jodgJw3wc/10K+hrj</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_4696c49b0fe64a56b2556a893491b75f</processGroupId>
<processGroupName></processGroupName>
<categoryName>权限处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_13dc19f73e7f4e998e8865951d3be4d8" label="权限导入" extendcode="" event=""/>
<dataView id="obj_f5ef3eccd96c456d8cca18383a2677ba" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_b0bcf0e487f64ef381a0c5ab704dfbd0" isshow="true" extendcode="" event="">
<button id="obj_56aa1567b26e452eab868abe0e044aec" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_d355ebdef30141a392063c36b7c2ccef" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_e299d0c21fbc4014b143738e3526ebbd" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_4996c0e9d49f47b29584fa72ec5eea7d" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_c24ddb0124a74e57a9377e558346287e" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_ec941c97f18c410f8acb81ea007bf378" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_b2a3070768c547d0956f2f2c1363e95a" refbuttonid="importDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="6" config="[{&quot;btnName&quot;:&quot;&quot;,&quot;formDefId&quot;:&quot;obj_a0940a4fbc414a3a8eba0f1e00e37955|941fb1e4-5121-4495-91bb-6239ae7d30e5&quot;,&quot;formName&quot;:&quot;阅览权限导入&quot;,&quot;formExcelShowName&quot;:&quot;权限导入&quot;,&quot;maxRow&quot;:&quot;20000&quot;,&quot;javaEvents&quot;:[],&quot;enableAddImport&quot;:true,&quot;enableupdateimport&quot;:true,&quot;requiredImport&quot;:false,&quot;importStrategy&quot;:{&quot;addImport&quot;:{&quot;strategybase&quot;:&quot;onlyimportdata&quot;,&quot;boModels&quot;:[{&quot;boDefName&quot;:&quot;BO_EU_PUBLISH_SCOPE_IMPORT&quot;,&quot;boItems&quot;:[{&quot;name&quot;:&quot;FRNAME&quot;,&quot;title&quot;:&quot;架构名称&quot;},{&quot;name&quot;:&quot;PALNAME&quot;,&quot;title&quot;:&quot;模型名称&quot;},{&quot;name&quot;:&quot;FILETYPE&quot;,&quot;title&quot;:&quot;文件类型&quot;},{&quot;name&quot;:&quot;IDPLUBSH&quot;,&quot;title&quot;:&quot;是否发布&quot;},{&quot;name&quot;:&quot;ORGPERM&quot;,&quot;title&quot;:&quot;组织权限,部门名称,逗号分隔&quot;},{&quot;name&quot;:&quot;POSTPERM&quot;,&quot;title&quot;:&quot;岗位权限,岗位名称,逗号分隔&quot;},{&quot;name&quot;:&quot;LEVELPERM&quot;,&quot;title&quot;:&quot;职级权限,职级名称,逗号分隔&quot;},{&quot;name&quot;:&quot;RESULT&quot;,&quot;title&quot;:&quot;导入结果&quot;},{&quot;name&quot;:&quot;ORGFAIL&quot;,&quot;title&quot;:&quot;未匹配到的组织&quot;},{&quot;name&quot;:&quot;POSTFAIL&quot;,&quot;title&quot;:&quot;未匹配到的岗位&quot;},{&quot;name&quot;:&quot;LEVELFAIL&quot;,&quot;title&quot;:&quot;未匹配到的职级&quot;},{&quot;name&quot;:&quot;SEND_SCOP&quot;,&quot;title&quot;:&quot;权限范围1:全集团0:部分)&quot;},{&quot;name&quot;:&quot;PALVERSIONID&quot;,&quot;title&quot;:&quot;PAL模型版本ID&quot;}]}]},&quot;updateImport&quot;:{&quot;boModels&quot;:[{&quot;boDefName&quot;:&quot;BO_EU_PUBLISH_SCOPE_IMPORT&quot;,&quot;boItems&quot;:[{&quot;name&quot;:&quot;PALNAME&quot;,&quot;title&quot;:&quot;模型名称&quot;},{&quot;name&quot;:&quot;ORGPERM&quot;,&quot;title&quot;:&quot;组织权限,部门名称,逗号分隔&quot;},{&quot;name&quot;:&quot;POSTPERM&quot;,&quot;title&quot;:&quot;岗位权限,岗位名称,逗号分隔&quot;},{&quot;name&quot;:&quot;LEVELPERM&quot;,&quot;title&quot;:&quot;职级权限,职级名称,逗号分隔&quot;},{&quot;name&quot;:&quot;LEVELFAIL&quot;,&quot;title&quot;:&quot;未匹配到的职级&quot;},{&quot;name&quot;:&quot;POSTFAIL&quot;,&quot;title&quot;:&quot;未匹配到的岗位&quot;},{&quot;name&quot;:&quot;ORGFAIL&quot;,&quot;title&quot;:&quot;未匹配到的组织&quot;},{&quot;name&quot;:&quot;RESULT&quot;,&quot;title&quot;:&quot;导入结果&quot;},{&quot;name&quot;:&quot;SEND_SCOP&quot;,&quot;title&quot;:&quot;权限范围1:全集团0:部分)&quot;},{&quot;name&quot;:&quot;PALVERSIONID&quot;,&quot;title&quot;:&quot;PAL模型版本ID&quot;},{&quot;name&quot;:&quot;FRNAME&quot;,&quot;title&quot;:&quot;架构名称&quot;},{&quot;name&quot;:&quot;FILETYPE&quot;,&quot;title&quot;:&quot;文件类型&quot;},{&quot;name&quot;:&quot;IDPLUBSH&quot;,&quot;title&quot;:&quot;是否发布&quot;}],&quot;keyFields&quot;:&quot;PALNAME&quot;}],&quot;updateendprocess&quot;:false}}}]" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_78b8b033630e4b8e9af004ec503063a1" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false">
<likecondition id="obj_a3b2176282214a21b38f221280e47fe5" field="RESULT" extend1="" label="导入结果" comparetype="like" uiname="TEXT" relationship="" uidefault="" uicomponent="文本" uiref="" required="false" security="" orderindex="0" event=""/>
</searcher>
<navTree id="obj_714fd049a37b462f85df99f279bbf2c5" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_682e8bad78334e2fac0a27892c9e546d" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_605ce630a6f646af89c849eff560b37d" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PUBLISH_SCOPE_IMPORT" countSql="" pagesize="200" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="1b7534c2-60a9-4330-b170-4f879babad81" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="256" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="FRNAME" label="架构名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_e4f4e7aaecf34ab4b86db8272ccab773" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="368" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="128" required="0" align="left" showrule="" upshowrule="{&quot;type&quot;:&quot;tx&quot;,&quot;required&quot;:false,&quot;length&quot;:&quot;128&quot;,&quot;cmconfig&quot;:{&quot;func&quot;:&quot;&quot;}}" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PALNAME" label="模型名称" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="be7833d2-3124-46ae-8006-a64f2b705809" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="FILETYPE" label="文件类型" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="302630b6-27f3-40de-9884-27fb0293239e" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="IDPLUBSH" label="是否发布" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_95f2698f6f6f4e3c9d0aa174970b27b8" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="200px" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="2000" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ORGPERM" label="组织权限,部门名称,逗号分隔" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Address" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_b99565f8da0e4d2aa7609764f85c4daf" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="225" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="2000" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="POSTPERM" label="岗位权限,岗位名称,逗号分隔" orderindex="5" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_28871107851a49e1bf1507841da28cf8" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="200px" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="2000" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="LEVELPERM" label="职级权限,职级名称,逗号分隔" orderindex="6" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_8eba1ee6a44a469c81fb09309e74f2e3" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="210" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="RESULT" label="导入结果" orderindex="7" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_0ce2292bb47d4cd7997672a9eba7bd98" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="473" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="2000" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ORGFAIL" label="未匹配到的组织" orderindex="8" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_25d47a8ae07a4af384ed87fb0ac0f68d" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="2000" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="LEVELFAIL" label="未匹配到的职级" orderindex="9" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_73c072efa20549bcbfb8a0ea872b9821" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="2000" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="POSTFAIL" label="未匹配到的岗位" orderindex="10" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_54c2589e58354efe99c6472d0a820eb7" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="SEND_SCOP" label="权限范围1:全集团0:部分)" orderindex="11" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="e4066a3f-946f-48cd-a77a-b1b13e957a7d" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PALVERSIONID" label="PAL模型版本ID" orderindex="12" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_bb1b5c3ce29148f3970cd21fd63c3ef7" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="13" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_1545836603164f20976bbcb9c2ce86a5" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="14" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_3befabeebc8e4f2c9585aa501f145b38" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="15" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_f7efb872191a4e6c859a295aad780708" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="16" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_48c0e15ea6fe4d35886d9e8ab81c61db" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="17" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_7919f155fdb34506b311434200643e96" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="18" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_edb2b0506c77479385d12be3e62a6948" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="19" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_caf61087dce2417bb0d928bf7bd7b199" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PUBLISH_SCOPE_IMPORT" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="20" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_4f1b08c2bcd34c2f9895980c01ea4e21</id>
<createUser>admin</createUser>
<createTime>2022-10-09 19:17:25</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-11 22:48:43</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr0z7nw8STzc+5G7U8SvBSGYHBXh0tni6zRU2SJv9HfcDDhAywBazRZtEVH4Im8C0r</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_4f1b08c2bcd34c2f9895980c01ea4e21</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_91c9150b6c034a7eb1b0b5ddadcc6a3e" label="批量发布时不发布文件过滤" extendcode="" event=""/>
<dataView id="obj_c1a35fca3122485cb56e1eed10e350f0" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_acca627be0f34c7b9ba02e61a648dd8a" isshow="true" extendcode="" event="">
<button id="obj_7ad3ebf0b55e4bf39be5558f1053857a" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_5583f2158fa0420da75a9bd4becd1638" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_1e8164550365477697bed1180fbef449" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_f6c495347b1e434693709a0c1ad14d5a" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_9ee5f5b97e1044c686f1879806b3c17a" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_889dcbb762874b879704993d0e6d45f4" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_5ef011fbd2574fb5a03d669cc3a4d5e3" refbuttonid="importDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="6" config="[{&quot;btnName&quot;:&quot;&quot;,&quot;formDefId&quot;:&quot;obj_bf6b5ac62cb744f1925d00ba1ae2e6fa|1fa52d9c-3422-40e3-8552-8ac8071f4c7a&quot;,&quot;formName&quot;:&quot;批量发布时不发布的文件过滤&quot;,&quot;formExcelShowName&quot;:&quot;不发布文件过滤&quot;,&quot;maxRow&quot;:&quot;20000&quot;,&quot;javaEvents&quot;:[],&quot;enableAddImport&quot;:true,&quot;enableupdateimport&quot;:false,&quot;requiredImport&quot;:false,&quot;importStrategy&quot;:{&quot;addImport&quot;:{&quot;strategybase&quot;:&quot;onlyimportdata&quot;,&quot;boModels&quot;:[{&quot;boDefName&quot;:&quot;BO_EU_BATCH_PUBLIS_NL&quot;,&quot;boItems&quot;:[{&quot;name&quot;:&quot;FRAMEWORKNAME&quot;,&quot;title&quot;:&quot;所属架构&quot;},{&quot;name&quot;:&quot;PLNAME&quot;,&quot;title&quot;:&quot;文件名称&quot;},{&quot;name&quot;:&quot;ISPUBLISH&quot;,&quot;title&quot;:&quot;是否发布&quot;},{&quot;name&quot;:&quot;PLID&quot;,&quot;title&quot;:&quot;文件id&quot;}]}]}}}]" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_3a425fd6ddf343658a845a4eff3bebb3" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false">
<likecondition id="obj_3efc8927ad1244828220bbda4b2c8d24" field="PLNAME" extend1="" label="文件名称" comparetype="like" uiname="TEXT" relationship="" uidefault="" uicomponent="文本" uiref="" required="false" security="" orderindex="0" event=""/>
</searcher>
<navTree id="obj_130d37e676b84dda87ef9fb75b43fc65" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_0f2dd922f6d940aeb7c44ff0da9c3a5d" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_d35694539f004591a633dfc0125e6ad8" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_BATCH_PUBLIS_NL" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="cd52efa5-e159-4113-801a-edaa11d2d309" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_BATCH_PUBLIS_NL" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="FRAMEWORKNAME" label="所属架构" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="e97d9561-1d78-4521-b8f0-ff1c2b752476" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="258" colALias="" colTableAlias="" colTable="BO_EU_BATCH_PUBLIS_NL" length="128" required="1" align="left" showrule="" upshowrule="{&quot;type&quot;:&quot;tx&quot;,&quot;required&quot;:false,&quot;length&quot;:&quot;128&quot;,&quot;cmconfig&quot;:{&quot;func&quot;:&quot;&quot;}}" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLNAME" label="文件名称" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="ed5ddc20-7161-4fd6-8281-66583fa7dda5" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_BATCH_PUBLIS_NL" length="128" required="1" align="left" showrule="" upshowrule="{&quot;type&quot;:&quot;tx&quot;,&quot;required&quot;:false,&quot;length&quot;:&quot;128&quot;,&quot;cmconfig&quot;:{&quot;func&quot;:&quot;&quot;}}" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ISPUBLISH" label="是否发布" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.ComboBox" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="e6a3d814-2d9e-44e2-afed-53c0b6ff1150" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_BATCH_PUBLIS_NL" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLID" label="文件id" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="1c7cd4b3-334d-4b2f-86da-620b57f8886b" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_BATCH_PUBLIS_NL" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="4" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="f2dbb808-d7d3-4912-aad8-f71c2b1211c9" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_BATCH_PUBLIS_NL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="d043db21-1b10-43d0-8771-c2bbf6c015e6" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_BATCH_PUBLIS_NL" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="5bc2590a-d2be-4c3d-9530-282af102f605" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_BATCH_PUBLIS_NL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="3020a1a3-0a0c-4541-ae5d-9b3b86cd1470" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_BATCH_PUBLIS_NL" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="196a6700-36e5-4728-abc3-a36c1367899f" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_BATCH_PUBLIS_NL" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="448486eb-85cf-4eef-80ce-fc8ca565fa8f" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_BATCH_PUBLIS_NL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="414304d9-673d-4dd5-8ce2-1212d2f43bfe" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_BATCH_PUBLIS_NL" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,61 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_5ed1dc03b858463698191ca1ee8d59ec</id>
<createUser>admin</createUser>
<createTime>2022-10-09 09:05:37</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-24 19:56:58</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrT6z7QFJKCcfvv1/UYIhnqKLhbyVcia7wBDlmol6ss26AK50SsAzc0LJdrgIE9Hkh</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_5ed1dc03b858463698191ca1ee8d59ec</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_11bcbf181808404e8cde52debae7f22d" label="空文件记录" extendcode="" event=""/>
<dataView id="obj_55479da00d7e445d90c0140f690d96af" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_3e3ac6e9ef704c8892619ed59a781258" isshow="true" extendcode="" event="">
<button id="obj_7af67872c999419d9cf83f3d097501d0" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_c034722fd5164187987eac4955477cd2" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_29d42145889c4a98ac241f0dda05b4f7" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_47c7f957734a4acca0c8c00e5a373cf4" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_3b7bfeb3744c455db32b70a0e0d0aef2" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_8245b902c134461fb30b440a61888d8e" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_b14307c782fd4101bfc55306cc4cb672" refbuttonid="importDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="6" config="[{&quot;btnName&quot;:&quot;&quot;,&quot;formDefId&quot;:&quot;obj_ede3a2ddbf5447e4a51f314a645dbd37|459ac035-8b6a-4df0-8f4c-a8525b3fcdde&quot;,&quot;formName&quot;:&quot;空文件&quot;,&quot;formExcelShowName&quot;:&quot;空文件记录&quot;,&quot;maxRow&quot;:&quot;20000&quot;,&quot;javaEvents&quot;:[],&quot;enableAddImport&quot;:true,&quot;enableupdateimport&quot;:false,&quot;requiredImport&quot;:false,&quot;importStrategy&quot;:{&quot;addImport&quot;:{&quot;strategybase&quot;:&quot;onlyimportdata&quot;,&quot;boModels&quot;:[{&quot;boDefName&quot;:&quot;BO_EU_PAL_NULL_FILE&quot;,&quot;boItems&quot;:[{&quot;name&quot;:&quot;PLNAME&quot;,&quot;title&quot;:&quot;模型名称&quot;},{&quot;name&quot;:&quot;FRAMEWORK&quot;,&quot;title&quot;:&quot;架构名称&quot;},{&quot;name&quot;:&quot;VERSION&quot;,&quot;title&quot;:&quot;版本号&quot;},{&quot;name&quot;:&quot;TYPE&quot;,&quot;title&quot;:&quot;模型类型&quot;},{&quot;name&quot;:&quot;ISPUBLISH&quot;,&quot;title&quot;:&quot;是否发布&quot;}]}]}}}]" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_90d30677f9f94680a795de8ee0d33174" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_71b95fa6c30b487f86deb4ede6dd0d9d" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_2fd530c5a4de46a5b791fcdd2ec20e33" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_836c179c631c4ad29dd45c3ff4821817" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_NULL_FILE" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="obj_f555a7639fdd425285da178427f2044f" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_NULL_FILE" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLNAME" label="模型名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_123e0a3b24b54562926973938eedb802" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="247" colALias="" colTableAlias="" colTable="BO_EU_PAL_NULL_FILE" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="FRAMEWORK" label="架构名称" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_4228ce1bb4e34b4a9be7d3efb21e84f0" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_NULL_FILE" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="VERSION" label="版本号" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_72266e73a77f4ffbba52ea2dcf758bbc" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_NULL_FILE" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="TYPE" label="模型类型" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_6a8804e6a56847488c7a4fede3281cae" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_NULL_FILE" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ISPUBLISH" label="是否发布" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_001565c1e540412b838fabc9a2c81644" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_NULL_FILE" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_65069731a6644ee98dcac431f80995ed" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_NULL_FILE" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_139c166e80e740a1ae63a2e60cb57e18" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_NULL_FILE" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_3316b34ec12542868cbcd22f6ab90bb4" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_NULL_FILE" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_e043acfbaa5545eaaf42b1e090b48129" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_NULL_FILE" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ab4544f2b0db403083c3f623ed63a7be" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_NULL_FILE" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_c7f1bdeb07344079aee69b2f23d7110b" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_NULL_FILE" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ebeddf06c20243b79cb0fe1d7e53ed07" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_NULL_FILE" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="12" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_71b76d68efa6483bab116dddac582a27</id>
<createUser>admin</createUser>
<createTime>2022-11-04 18:23:28</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-04 18:23:28</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrXi7jgyfKqHEiG2sOUJ2qec1fMZDXmkU+61IcMZvRPEd8x1xwd2T1pj28AmBMq67u</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_71b76d68efa6483bab116dddac582a27</processGroupId>
<processGroupName></processGroupName>
<categoryName>待办待阅</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_b59eb87e391742cd9fb2e3e0e976971e" label="系统人员" extendcode="" event=""/>
<dataView id="obj_0abf3c59cbb64f4d8175010481d4a481" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_f102c91762f9411fa408e5dc3fb12294" isshow="true" extendcode="" event="">
<button id="obj_40ad398751a94fd7b14a8b4cb310fbe8" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_92165de4f31646ad953d5a756c252efc" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="2" mobileShow="false" event="" selectShow="false"/>
<button id="obj_04284d7e2b9049ff85d1925a810df2d8" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="3" mobileShow="false" event="" selectShow="true"/>
<button id="obj_f5c122b759a14e58a3f6f2d5f3af4e1d" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_ecd6f0098a9e4a2ca0433d38bff53bd6" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_b37590c858694a9b92f580f9f2ade1bd" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="6" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_8ae8f7643e6946c4ab7706a77b298c82" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_70e1ae83ed3b4ede99820926f387b886" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_7a807953433342709df71020c74c707e" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_0cf94060a7934436b87b5be16c2142d7" isshow="true" autoSearch="true" customSet="true" select="false" datasource="" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_75156a5ae7004e2daad5e284d26147b1</id>
<createUser>admin</createUser>
<createTime>2022-11-05 23:20:18</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-20 10:02:08</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrJC9/Olp8V0LXtvkRWTNtfDpU4H754D10NJAOwxErKpa/eIXsLM8NsP366PtZCwiD</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_75156a5ae7004e2daad5e284d26147b1</processGroupId>
<processGroupName></processGroupName>
<categoryName>待办待阅</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_e9cf4a56bf5b4115a7e28fdece6c2121" label="待阅推送失败人员" extendcode="" event=""/>
<dataView id="obj_16742235146844daaa42841fe68e7a8e" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_fadbf9a65b3e4d7cb443a542d5f84173" isshow="true" extendcode="" event="">
<button id="obj_ff1735337be8431a90ed749b487426c4" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_bb17fc3080cd43fe9cc1960a3103a02a" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="2" mobileShow="false" event="" selectShow="false"/>
<button id="obj_58625fab4b72456ebae9431447447e5b" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="3" mobileShow="false" event="" selectShow="true"/>
<button id="obj_43c99edfe69d428ab8b8c06c92790273" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_8c7670fb89ea4de8b684ded965db93d6" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_2b8a09af2fc14ea0b06e1ac0661111d1" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="6" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_e22b26e8685540b28923ea0f6d8a59f9" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false">
<likecondition id="obj_185802ff169b47afa08c5a028de84b8b" field="TITLE" extend1="" label="文件标题" comparetype="like" uiname="TEXT" relationship="" uidefault="" uicomponent="文本" uiref="" required="false" security="" orderindex="0" event=""/>
</searcher>
<navTree id="obj_82791ac8e7324709b8b511cd40bea44c" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_1ff7e7c717dc4676be517fc02ca30080" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_0f01dd98efc44eedbd3dfc554e9ddde9" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_READ_COUNT" countSql="" pagesize="100" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="76d7fdcd-c012-42ff-86a6-66d4ac679761" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="521" colALias="" colTableAlias="" colTable="BO_EU_READ_COUNT" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="TITLE" label="文件标题" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="8a276d51-0d5a-4d63-828b-8f9ce175b534" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_READ_COUNT" length="128" required="1" align="left" showrule="{&quot;type&quot;:&quot;org&quot;,&quot;orgtype&quot;:&quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="NAME" label="接收人" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="06a47c11-6d91-4268-917d-1d548589c891" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="256" colALias="" colTableAlias="" colTable="BO_EU_READ_COUNT" length="128" required="1" align="left" showrule="{&quot;type&quot;:&quot;org&quot;,&quot;orgtype&quot;:&quot;dept&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="DEPNAME" label="部门名称" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="0095032b-2899-483f-97f3-3691ee1db819" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_READ_COUNT" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="3" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="faa43e23-b9f4-4510-8e95-395856bca01f" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_READ_COUNT" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="4" colbehaviortarget="" ishidden="false" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="beb9684e-65cf-44c7-aaac-30cb2810b7a3" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_READ_COUNT" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="01c552dc-dda5-4774-bb08-fccbb623a5d2" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_READ_COUNT" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="5e534e81-9368-43d9-b0df-f557329b627b" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_READ_COUNT" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="35300aac-f5a3-4f45-810f-c606008323e6" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_READ_COUNT" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="a9a23cb6-750b-4c91-99f6-8f19cee47309" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_READ_COUNT" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="c6db475b-73e1-464f-b112-9780246d2a14" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_READ_COUNT" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,75 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_a4836ee471b947ea93076dcb9f22552f</id>
<createUser>admin</createUser>
<createTime>2022-10-28 17:33:54</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-21 13:46:21</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrscUH1vcJUFAg1ZuPTOadjscb01chG+HaVoSRMvoXOKF2vCc3kIXFc95FWAO/5F/J</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_a4836ee471b947ea93076dcb9f22552f</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_3462b471e2a74e99b3310b7d13e8f8ee" label="批量刷模型编号记录" extendcode="" event=""/>
<dataView id="obj_35b5721b32cf4d06853ab3b669fea3ac" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_97d240f5acae4afa8fef32dd79962c9e" isshow="true" extendcode="" event="">
<button id="obj_7ccfe7a1eb64401da063b75aea2e2610" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_7ad8b5fe8ab9482c9bcfe1b83fc546fb" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_60598cac06494f9aaead2ab971ae7e0c" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_6fe5c902cf4243bc96f58ec179c30277" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_9b45eab48e8b468083f48b49e7129c67" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_dbb0cafe97e3408798ef6e419683b455" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_93307c325105467b932e549b0fc42b90" refbuttonid="obj_92f9887391ec459dac93dd30286dab05" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="6" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_dd4d47c0098548edbeb26907931d95cc" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false">
<likecondition id="obj_5d00232ea33b418ea909af80baebf17c" field="PLNAME" extend1="" label="模型名称" comparetype="=" uiname="TEXT" relationship="" uidefault="" uicomponent="日期" uiref="" required="false" security="" orderindex="0" event=""/>
</searcher>
<navTree id="obj_9cc9309936154e79a43b0f589ebac801" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_95a1cee330e3409dbf083099979c28b1" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_50ad37f2b71a4821b0c82ac762eb586c" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_NOREFRESH" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="3c0d303b-b0a4-4eb0-a518-249b7936e9b1" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLNAME" label="模型名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="d901c630-f839-4599-a58a-19d91f61df5e" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="185" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="FRAMEWORK" label="架构名称" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="090aca46-a540-4c04-99a5-f8d92db449bc" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="VERSION" label="版本号" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="51faf84d-d054-4df2-a31e-7dd77f7e3683" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="TYPE" label="模型类型" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="03750ee1-41f0-42b1-a3ec-3305374704eb" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ISPUBLISH" label="是否发布" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="535eaafc-8518-45c6-b2b0-ad4cf12a75f6" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="236" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLID" label="模型ID" orderindex="5" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="53399e31-27a9-446f-b6c3-57a5d4e461ba" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="RESULT" label="刷新结果" orderindex="6" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="3b8639be-5985-453a-8083-ed80f325d31f" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="2000" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="RESULTSTR" label="返回结果记录" orderindex="7" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="5f8d640d-8d6a-4105-ad1c-e47aa8c97512" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="cf0f6002-0f2a-4a3a-b5be-a9ae1ec91f4f" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="dbc681ce-d70c-450f-9d9f-b0669f0b7518" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="2473ed2a-cca2-4e1a-88f7-561a9134fc10" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="11" colbehaviortarget="" ishidden="false" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="9aae8d07-396b-40b4-84c8-adf0c7c15504" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="12" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="c5b2ab95-ae96-4359-ae2e-b09678017ccf" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="13" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="1081b1c8-cefd-45fc-aa87-7c46370a9458" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="14" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="8ddd3c3f-aa75-4b00-a882-e4c1be3ced08" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="15" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons>
<userextendbutton id="obj_92f9887391ec459dac93dd30286dab05" icon="" label="打开模型" tip="">
<eventcall></eventcall>
<eventscript>var%20data%20%3D%20eventContext.DWApi.grid.getCheckedData%28%29%3B%0Aconst%20sid%20%3D%20eventContext.DWApi.sid%3B%0Avar%20palId%20%3D%20data%5B0%5D.PLID%3B%0Awindow.open%28%27https%3A//bpm.yili.com%3A8088/portal/r/w%3Fuuid%3D%27+palId+%27%26teamId%3D%26cmd%3Dcom.actionsoft.apps.coe.pal_pl_repository_designer%26sid%3D%27+sid%29</eventscript>
<beforeeventcall></beforeeventcall>
<beforeeventscript></beforeeventscript>
<aftereventcall></aftereventcall>
<aftereventscript></aftereventscript>
</userextendbutton>
</userextendbuttons>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_a4836ee471b947ea93076dcb9f22552f</id>
<createUser>admin</createUser>
<createTime>2022-10-28 17:33:54</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-01 14:59:26</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrscUH1vcJUFAg1ZuPTOadjscb01chG+HaVoSRMvoXOKF2vCc3kIXFc95FWAO/5F/J</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_a4836ee471b947ea93076dcb9f22552f</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_3462b471e2a74e99b3310b7d13e8f8ee" label="批量刷模型编号记录" extendcode="" event=""/>
<dataView id="obj_35b5721b32cf4d06853ab3b669fea3ac" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_97d240f5acae4afa8fef32dd79962c9e" isshow="true" extendcode="" event="">
<button id="obj_7ccfe7a1eb64401da063b75aea2e2610" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_7ad8b5fe8ab9482c9bcfe1b83fc546fb" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="2" mobileShow="false" event="" selectShow="false"/>
<button id="obj_60598cac06494f9aaead2ab971ae7e0c" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="3" mobileShow="false" event="" selectShow="true"/>
<button id="obj_6fe5c902cf4243bc96f58ec179c30277" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_9b45eab48e8b468083f48b49e7129c67" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_dbb0cafe97e3408798ef6e419683b455" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="6" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_dd4d47c0098548edbeb26907931d95cc" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_9cc9309936154e79a43b0f589ebac801" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_95a1cee330e3409dbf083099979c28b1" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_50ad37f2b71a4821b0c82ac762eb586c" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_NOREFRESH" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="3c0d303b-b0a4-4eb0-a518-249b7936e9b1" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLNAME" label="模型名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="d901c630-f839-4599-a58a-19d91f61df5e" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="FRAMEWORK" label="架构名称" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="090aca46-a540-4c04-99a5-f8d92db449bc" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="VERSION" label="版本号" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="51faf84d-d054-4df2-a31e-7dd77f7e3683" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="TYPE" label="模型类型" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="03750ee1-41f0-42b1-a3ec-3305374704eb" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ISPUBLISH" label="是否发布" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="535eaafc-8518-45c6-b2b0-ad4cf12a75f6" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLID" label="错误类型" orderindex="5" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="53399e31-27a9-446f-b6c3-57a5d4e461ba" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="RESULT" label="刷新结果" orderindex="6" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="3b8639be-5985-453a-8083-ed80f325d31f" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="2000" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="RESULTSTR" label="返回结果记录" orderindex="7" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="5f8d640d-8d6a-4105-ad1c-e47aa8c97512" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="cf0f6002-0f2a-4a3a-b5be-a9ae1ec91f4f" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="9" colbehaviortarget="" ishidden="false" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="dbc681ce-d70c-450f-9d9f-b0669f0b7518" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="2473ed2a-cca2-4e1a-88f7-561a9134fc10" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="9aae8d07-396b-40b4-84c8-adf0c7c15504" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="12" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="c5b2ab95-ae96-4359-ae2e-b09678017ccf" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="13" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="1081b1c8-cefd-45fc-aa87-7c46370a9458" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="14" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="8ddd3c3f-aa75-4b00-a882-e4c1be3ced08" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="15" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_a4836ee471b947ea93076dcb9f22552f</id>
<createUser>admin</createUser>
<createTime>2022-10-28 17:33:54</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-28 17:34:07</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrscUH1vcJUFAg1ZuPTOadjscb01chG+HaVoSRMvoXOKF2vCc3kIXFc95FWAO/5F/J</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_a4836ee471b947ea93076dcb9f22552f</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_3462b471e2a74e99b3310b7d13e8f8ee" label="批量刷模型编号记录" extendcode="" event=""/>
<dataView id="obj_35b5721b32cf4d06853ab3b669fea3ac" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_97d240f5acae4afa8fef32dd79962c9e" isshow="true" extendcode="" event="">
<button id="obj_7ccfe7a1eb64401da063b75aea2e2610" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_7ad8b5fe8ab9482c9bcfe1b83fc546fb" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="2" mobileShow="false" event="" selectShow="false"/>
<button id="obj_60598cac06494f9aaead2ab971ae7e0c" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="3" mobileShow="false" event="" selectShow="true"/>
<button id="obj_6fe5c902cf4243bc96f58ec179c30277" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_9b45eab48e8b468083f48b49e7129c67" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_dbb0cafe97e3408798ef6e419683b455" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="6" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_dd4d47c0098548edbeb26907931d95cc" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_9cc9309936154e79a43b0f589ebac801" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_95a1cee330e3409dbf083099979c28b1" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_50ad37f2b71a4821b0c82ac762eb586c" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_NOREFRESH" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="3c0d303b-b0a4-4eb0-a518-249b7936e9b1" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLNAME" label="模型名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="d901c630-f839-4599-a58a-19d91f61df5e" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="FRAMEWORK" label="架构名称" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="090aca46-a540-4c04-99a5-f8d92db449bc" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="VERSION" label="版本号" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="51faf84d-d054-4df2-a31e-7dd77f7e3683" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="TYPE" label="模型类型" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="03750ee1-41f0-42b1-a3ec-3305374704eb" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ISPUBLISH" label="是否发布" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="535eaafc-8518-45c6-b2b0-ad4cf12a75f6" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLID" label="错误类型" orderindex="5" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="53399e31-27a9-446f-b6c3-57a5d4e461ba" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="RESULT" label="刷新结果" orderindex="6" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="3b8639be-5985-453a-8083-ed80f325d31f" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="2000" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="RESULTSTR" label="返回结果记录" orderindex="7" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="5f8d640d-8d6a-4105-ad1c-e47aa8c97512" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="cf0f6002-0f2a-4a3a-b5be-a9ae1ec91f4f" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="dbc681ce-d70c-450f-9d9f-b0669f0b7518" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="2473ed2a-cca2-4e1a-88f7-561a9134fc10" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="9aae8d07-396b-40b4-84c8-adf0c7c15504" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="12" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="c5b2ab95-ae96-4359-ae2e-b09678017ccf" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="13" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="1081b1c8-cefd-45fc-aa87-7c46370a9458" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="14" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="8ddd3c3f-aa75-4b00-a882-e4c1be3ced08" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFRESH" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="15" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,83 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_aed82b86aba14271a0b0ad02b5fb3de7</id>
<createUser>admin</createUser>
<createTime>2022-10-13 22:20:19</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-17 16:34:22</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr8lTS+u7f3oZvQJOffDUI237cH5qcXSCfoQs3cgGx/5bilvIwAAd2JM0I5/1N5aFR</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_aed82b86aba14271a0b0ad02b5fb3de7</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_22b9b27bae6a43398714bfa4cde9577f" label="文件移动架构" extendcode="" event=""/>
<dataView id="obj_12d8a5b838114b6dbf03a95d5941131f" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_4fd8fa769cca401db034b26c6e0b3091" isshow="true" extendcode="" event="">
<button id="obj_664e9c305000446fa342f527b5f5136b" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_632f3fb79eb942eca93d29db9e7b8d12" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_715bf53fff9e47d5a875d66db3bb8f2a" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_851596a6e48744ec8864950ab62e8d44" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_52078d93732042bfb8b32f86dd75e5af" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_fcb0034c013f4e5eb80b09ab73c158f7" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_d76d90168f85450098cd5f982ad79f7b" refbuttonid="importDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="6" config="[{&quot;btnName&quot;:&quot;&quot;,&quot;formDefId&quot;:&quot;obj_c504beb31bc841ef96b6b2304257f7d5|93607580-1130-4522-aa30-a37d2467908a&quot;,&quot;formName&quot;:&quot;PAL架构替换&quot;,&quot;formExcelShowName&quot;:&quot;文件架构替换&quot;,&quot;maxRow&quot;:&quot;20000&quot;,&quot;javaEvents&quot;:[],&quot;enableAddImport&quot;:true,&quot;enableupdateimport&quot;:false,&quot;requiredImport&quot;:false,&quot;importStrategy&quot;:{&quot;addImport&quot;:{&quot;strategybase&quot;:&quot;onlyimportdata&quot;,&quot;boModels&quot;:[{&quot;boDefName&quot;:&quot;BO_EU_PAL_FRAMEWORK_TOOL&quot;,&quot;boItems&quot;:[{&quot;name&quot;:&quot;PALNAME&quot;,&quot;title&quot;:&quot;文件名称&quot;},{&quot;name&quot;:&quot;ERRORFRAMEWORK&quot;,&quot;title&quot;:&quot;错误架构&quot;},{&quot;name&quot;:&quot;CORRECTFRAMEWORK&quot;,&quot;title&quot;:&quot;正确架构&quot;},{&quot;name&quot;:&quot;PAID&quot;,&quot;title&quot;:&quot;文件Id&quot;},{&quot;name&quot;:&quot;RESULT&quot;,&quot;title&quot;:&quot;修改结果&quot;}]}]}}}]" mobileShow="false" event="" selectShow="false"/>
<button id="obj_aed532b62033405d8e6362ff20c0b2ab" refbuttonid="obj_065ff4e1368544fba60a9009707c0fcc" cls="" fontColor="" bgColor="#eaf1de" security="" isshow="true" orderindex="7" mobileShow="false" event="" selectShow="false"/>
<button id="obj_b086ba11179747e5880b9a5983086de7" refbuttonid="obj_8fa19d5c9d6a4f08a4ee0d5067ef9879" cls="" fontColor="" bgColor="#dae5f0" security="" isshow="true" orderindex="8" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_ebdbe5b9186d43cda9125524083eaaf3" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false">
<likecondition id="obj_c3a958586e92498b8492a74499ca6997" field="PALNAME" extend1="" label="文件名称" comparetype="like" uiname="TEXT" relationship="" uidefault="" uicomponent="文本" uiref="" required="false" security="" orderindex="0" event=""/>
<likecondition id="obj_2226340ea2bb456cb98f251878946063" field="RESULT" extend1="" label="移动结果" comparetype="like" uiname="TEXT" relationship="" uidefault="" uicomponent="文本" uiref="" required="false" security="" orderindex="1" event=""/>
</searcher>
<navTree id="obj_8857127bd1064a44a7dbb1a2b68413fe" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_47cdde7f6757472183a8d9766c912ead" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_234c41c7855a4e438eb42147083b294b" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_FRAMEWORK_TOOL" countSql="" pagesize="100" event="" rowDefHeight="25" showCheckBox="true" ismultiple="false" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="obj_a9600e90beb1491484631fd77c761d44" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="332" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="{&quot;type&quot;:&quot;tx&quot;,&quot;required&quot;:false,&quot;length&quot;:&quot;128&quot;,&quot;cmconfig&quot;:{&quot;func&quot;:&quot;&quot;}}" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PALNAME" label="文件名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_af0b13e5a54f4cedb6e3a5520674e7d9" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="235" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ERRORFRAMEWORK" label="错误架构" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_a3cf7ca035bd41e6b535f0d6b87c1b18" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="228" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="CORRECTFRAMEWORK" label="正确架构" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ccf94b8ca7874cfd8b81cd1f64a2f5b7" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="500" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="{&quot;type&quot;:&quot;tx&quot;,&quot;required&quot;:false,&quot;length&quot;:&quot;128&quot;,&quot;cmconfig&quot;:{&quot;func&quot;:&quot;&quot;}}" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="RESULT" label="移动结果" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_6a73be84418d4e228ba715abe9edd87a" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="137" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PAID" label="文件Id" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_67dc8ea181d3415c8f66288524831591" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_dcc23e214abe4a19bdd9ad0b8ecd4846" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_9c25d97c738a44fd8e89cf7b306ff1ab" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_964fb139d057405fb704d24cfb821529" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_5d75158954234dd589df0e37d8ac8001" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_1b4f80e7626644ac8ea46edf2bd0cf17" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ae2e4d74932b4d49b59a354b45878b73" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_8827e5574411478a89db52ed27d026d4" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="12" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons>
<userextendbutton id="obj_065ff4e1368544fba60a9009707c0fcc" icon="" label="打开模型" tip="">
<eventcall></eventcall>
<eventscript>var%20data%20%3D%20eventContext.DWApi.grid.getCheckedData%28%29%3B%0Aconst%20sid%20%3D%20eventContext.DWApi.sid%3B%0Avar%20palId%20%3D%20data%5B0%5D.PAID%3B%0Awindow.open%28%27https%3A//bpm.yili.com%3A8088/portal/r/w%3Fuuid%3D%27+palId+%27%26teamId%3D%26cmd%3Dcom.actionsoft.apps.coe.pal_pl_repository_designer%26sid%3D%27+sid%29</eventscript>
<beforeeventcall></beforeeventcall>
<beforeeventscript></beforeeventscript>
<aftereventcall></aftereventcall>
<aftereventscript></aftereventscript>
</userextendbutton>
<userextendbutton id="obj_8fa19d5c9d6a4f08a4ee0d5067ef9879" icon="" label="批量移动" tip="">
<eventcall></eventcall>
<eventscript>var%20data%20%3D%20eventContext.DWApi.grid.getCheckedData%28%29%3B%0Aif%28data%5B0%5D%3D%3Dnull%7C%7Cdata.length%3E1%29%7B%0A%20%20eventContext.instance.%24message%28%7B%0A%20%20type%3A%22error%22%2C%0A%20%20message%3A%22%u8BF7%u9009%u62E9%u5355%u6761%u6570%u636E%uFF01%22%0A%7D%29%3B%0A%7Delse%7B%0A%20testCall%28%29%3B%0A%7D%0A%0Afunction%20testCall%28%29%20%7B%0A%09var%20plId%20%3D%20data%5B0%5D.PALNAME%3B%0A%09var%20sid%20%3D%20eventContext.DWApi.grid.sid%3B%0A%09eventContext.instance.awsuiaxios.post%28%7B%0A%09%09%09url%3A%20%22./jd%22%2C%0A%09%09%09data%3A%20%7B%0A%09%09%09%09cmd%3A%20%22com.awspaas.user.apps.app.controller.movePalFile%22%2C%0A%09%09%09%09sid%3A%20sid%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20plname%3AplId%0A%09%09%09%09//%20bindId%3A%20%20eventContext.row._BINDID%2C%0A%09%09%09%09//APPLYNO%3A%20JSON.stringify%28result%29%0A%09%09%09%09//title%20%3A%20eventContext.row.FILENAME%0A%09%09%09%7D%0A%09%09%7D%29%0A%09%09.then%28function%28response%29%20%7B%0A%09%09%09if%20%28response.result%20%21%3D%20%22error%22%29%20%7B%0A%09%09%09%09if%20%28response.result%20%3D%3D%20%22ok%22%29%20%7B%0A%09%09%09%09%09if%20%28response.data.result%20%3D%3D%20%22ok%22%29%20%7B%0A%09%09%09%09%09%09eventContext.instance.%24message%28%7B%0A%09%09%09%09%09%09%09type%3A%20%22success%22%2C%0A%09%09%09%09%09%09%09message%3A%20%22%u6587%u4EF6%u79FB%u52A8%u6210%u529F%uFF01%22%0A%09%09%09%09%09%09%7D%29%3B%0A%0A%09%09%09%09%09%7D%20else%20%7B%0A%09%09%09%09%09%09eventContext.instance.%24message%28%7B%0A%09%09%09%09%09%09%09type%3A%20%22error%22%2C%0A%09%09%09%09%09%09%09message%3A%20%22%u6587%u4EF6%u79FB%u52A8%u5931%u8D25%uFF0C%u67B6%u6784%u4E0D%u5339%u914D%uFF01%22%0A%09%09%09%09%09%09%7D%29%3B%0A%0A%09%09%09%09%09%7D%0A%0A%09%09%09%09%7D%20else%20%7B%0A%09%09%09%09%09eventContext.instance.%24message%28%7B%0A%09%09%09%09%09%09type%3A%20%22warning%22%2C%0A%09%09%09%09%09%09message%3A%20response.result%0A%09%09%09%09%09%7D%29%3B%0A%0A%09%09%09%09%7D%0A%09%09%09%7D%0A%0A%09%09%7D%29%0A%09%09.catch%28function%28response%29%20%7B%0A%09%09%09console.log%28response%29%3B%0A%09%09%7D%29%3B%0A%0A%7D%0A%0A%0A%0A%0A%0A</eventscript>
<beforeeventcall></beforeeventcall>
<beforeeventscript></beforeeventscript>
<aftereventcall></aftereventcall>
<aftereventscript></aftereventscript>
</userextendbutton>
</userextendbuttons>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_aed82b86aba14271a0b0ad02b5fb3de7</id>
<createUser>admin</createUser>
<createTime>2022-10-13 22:20:19</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-14 00:53:50</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr8lTS+u7f3oZvQJOffDUI237cH5qcXSCfoQs3cgGx/5bilvIwAAd2JM0I5/1N5aFR</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_aed82b86aba14271a0b0ad02b5fb3de7</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_22b9b27bae6a43398714bfa4cde9577f" label="PAL架构替换" extendcode="" event=""/>
<dataView id="obj_12d8a5b838114b6dbf03a95d5941131f" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_4fd8fa769cca401db034b26c6e0b3091" isshow="true" extendcode="" event="">
<button id="obj_664e9c305000446fa342f527b5f5136b" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_632f3fb79eb942eca93d29db9e7b8d12" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_715bf53fff9e47d5a875d66db3bb8f2a" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_851596a6e48744ec8864950ab62e8d44" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_52078d93732042bfb8b32f86dd75e5af" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_fcb0034c013f4e5eb80b09ab73c158f7" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_d76d90168f85450098cd5f982ad79f7b" refbuttonid="importDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="6" config="[{&quot;btnName&quot;:&quot;&quot;,&quot;formDefId&quot;:&quot;obj_c504beb31bc841ef96b6b2304257f7d5|93607580-1130-4522-aa30-a37d2467908a&quot;,&quot;formName&quot;:&quot;PAL架构替换&quot;,&quot;formExcelShowName&quot;:&quot;文件架构替换&quot;,&quot;maxRow&quot;:&quot;20000&quot;,&quot;javaEvents&quot;:[],&quot;enableAddImport&quot;:true,&quot;enableupdateimport&quot;:false,&quot;requiredImport&quot;:false,&quot;importStrategy&quot;:{&quot;addImport&quot;:{&quot;strategybase&quot;:&quot;onlyimportdata&quot;,&quot;boModels&quot;:[{&quot;boDefName&quot;:&quot;BO_EU_PAL_FRAMEWORK_TOOL&quot;,&quot;boItems&quot;:[{&quot;name&quot;:&quot;PALNAME&quot;,&quot;title&quot;:&quot;文件名称&quot;},{&quot;name&quot;:&quot;ERRORFRAMEWORK&quot;,&quot;title&quot;:&quot;错误架构&quot;},{&quot;name&quot;:&quot;CORRECTFRAMEWORK&quot;,&quot;title&quot;:&quot;正确架构&quot;},{&quot;name&quot;:&quot;PAID&quot;,&quot;title&quot;:&quot;文件Id&quot;},{&quot;name&quot;:&quot;RESULT&quot;,&quot;title&quot;:&quot;修改结果&quot;}]}]}}}]" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_ebdbe5b9186d43cda9125524083eaaf3" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_8857127bd1064a44a7dbb1a2b68413fe" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_47cdde7f6757472183a8d9766c912ead" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_234c41c7855a4e438eb42147083b294b" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_FRAMEWORK_TOOL" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="%7B%22behavior%22%3A%22%22%2C%22behaviorMobile%22%3A%22%22%2C%22h%22%3A%22%22%2C%22hUnit%22%3A%22px%22%2C%22ih%22%3A%22%22%2C%22ihUnit%22%3A%22px%22%2C%22isMask%22%3A0%2C%22sw%22%3A%22%22%2C%22swUnit%22%3A%22px%22%2C%22target%22%3A%22%22%2C%22title%22%3A%22%22%2C%22wUnit%22%3A%22px%22%2C%22w%22%3A%22%22%7D" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="obj_a9600e90beb1491484631fd77c761d44" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="309" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PALNAME" label="文件名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_af0b13e5a54f4cedb6e3a5520674e7d9" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="168" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ERRORFRAMEWORK" label="错误架构" orderindex="1" colbehaviortarget="inner" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="openmodifyform" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_a3cf7ca035bd41e6b535f0d6b87c1b18" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="214" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="CORRECTFRAMEWORK" label="正确架构" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_6a73be84418d4e228ba715abe9edd87a" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PAID" label="文件Id" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ccf94b8ca7874cfd8b81cd1f64a2f5b7" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="322" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="RESULT" label="修改结果" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_67dc8ea181d3415c8f66288524831591" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_dcc23e214abe4a19bdd9ad0b8ecd4846" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_9c25d97c738a44fd8e89cf7b306ff1ab" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_964fb139d057405fb704d24cfb821529" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_5d75158954234dd589df0e37d8ac8001" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_1b4f80e7626644ac8ea46edf2bd0cf17" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ae2e4d74932b4d49b59a354b45878b73" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_8827e5574411478a89db52ed27d026d4" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="12" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors>
<userextendbehavior id="openmodifyform" name="">
<templatecall>onclick%3D</templatecall>
<templatescript></templatescript>
</userextendbehavior>
</userextendbehaviors>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_aed82b86aba14271a0b0ad02b5fb3de7</id>
<createUser>admin</createUser>
<createTime>2022-10-13 22:20:19</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-13 23:29:38</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr8lTS+u7f3oZvQJOffDUI237cH5qcXSCfoQs3cgGx/5bilvIwAAd2JM0I5/1N5aFR</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_aed82b86aba14271a0b0ad02b5fb3de7</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_22b9b27bae6a43398714bfa4cde9577f" label="PAL架构替换" extendcode="" event=""/>
<dataView id="obj_12d8a5b838114b6dbf03a95d5941131f" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_4fd8fa769cca401db034b26c6e0b3091" isshow="true" extendcode="" event="">
<button id="obj_664e9c305000446fa342f527b5f5136b" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_632f3fb79eb942eca93d29db9e7b8d12" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_715bf53fff9e47d5a875d66db3bb8f2a" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_851596a6e48744ec8864950ab62e8d44" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_52078d93732042bfb8b32f86dd75e5af" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_fcb0034c013f4e5eb80b09ab73c158f7" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_d76d90168f85450098cd5f982ad79f7b" refbuttonid="importDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="6" config="[{&quot;btnName&quot;:&quot;&quot;,&quot;formDefId&quot;:&quot;obj_c504beb31bc841ef96b6b2304257f7d5|93607580-1130-4522-aa30-a37d2467908a&quot;,&quot;formName&quot;:&quot;PAL架构替换&quot;,&quot;formExcelShowName&quot;:&quot;文件架构替换&quot;,&quot;maxRow&quot;:&quot;20000&quot;,&quot;javaEvents&quot;:[],&quot;enableAddImport&quot;:true,&quot;enableupdateimport&quot;:false,&quot;requiredImport&quot;:false,&quot;importStrategy&quot;:{&quot;addImport&quot;:{&quot;strategybase&quot;:&quot;onlyimportdata&quot;,&quot;boModels&quot;:[{&quot;boDefName&quot;:&quot;BO_EU_PAL_FRAMEWORK_TOOL&quot;,&quot;boItems&quot;:[{&quot;name&quot;:&quot;PALNAME&quot;,&quot;title&quot;:&quot;文件名称&quot;},{&quot;name&quot;:&quot;ERRORFRAMEWORK&quot;,&quot;title&quot;:&quot;错误架构&quot;},{&quot;name&quot;:&quot;CORRECTFRAMEWORK&quot;,&quot;title&quot;:&quot;正确架构&quot;},{&quot;name&quot;:&quot;PAID&quot;,&quot;title&quot;:&quot;文件Id&quot;},{&quot;name&quot;:&quot;RESULT&quot;,&quot;title&quot;:&quot;修改结果&quot;}]}]}}}]" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_ebdbe5b9186d43cda9125524083eaaf3" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_8857127bd1064a44a7dbb1a2b68413fe" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_47cdde7f6757472183a8d9766c912ead" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_234c41c7855a4e438eb42147083b294b" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_FRAMEWORK_TOOL" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="%7B%22behavior%22%3A%22%22%2C%22behaviorMobile%22%3A%22%22%2C%22h%22%3A%22%22%2C%22hUnit%22%3A%22px%22%2C%22ih%22%3A%22%22%2C%22ihUnit%22%3A%22px%22%2C%22isMask%22%3A0%2C%22sw%22%3A%22%22%2C%22swUnit%22%3A%22px%22%2C%22target%22%3A%22%22%2C%22title%22%3A%22%22%2C%22wUnit%22%3A%22px%22%2C%22w%22%3A%22%22%7D" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="obj_a9600e90beb1491484631fd77c761d44" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="309" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PALNAME" label="文件名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_af0b13e5a54f4cedb6e3a5520674e7d9" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="168" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ERRORFRAMEWORK" label="错误架构" orderindex="1" colbehaviortarget="inner" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="openmodifyform" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_a3cf7ca035bd41e6b535f0d6b87c1b18" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="214" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="CORRECTFRAMEWORK" label="正确架构" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_6a73be84418d4e228ba715abe9edd87a" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PAID" label="文件Id" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ccf94b8ca7874cfd8b81cd1f64a2f5b7" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="RESULT" label="修改结果" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_67dc8ea181d3415c8f66288524831591" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_dcc23e214abe4a19bdd9ad0b8ecd4846" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_9c25d97c738a44fd8e89cf7b306ff1ab" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_964fb139d057405fb704d24cfb821529" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_5d75158954234dd589df0e37d8ac8001" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_1b4f80e7626644ac8ea46edf2bd0cf17" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ae2e4d74932b4d49b59a354b45878b73" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_8827e5574411478a89db52ed27d026d4" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="12" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors>
<userextendbehavior id="openmodifyform" name="">
<templatecall>onclick%3D</templatecall>
<templatescript></templatescript>
</userextendbehavior>
</userextendbehaviors>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_aed82b86aba14271a0b0ad02b5fb3de7</id>
<createUser>admin</createUser>
<createTime>2022-10-13 22:20:19</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-14 00:51:51</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr8lTS+u7f3oZvQJOffDUI237cH5qcXSCfoQs3cgGx/5bilvIwAAd2JM0I5/1N5aFR</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_aed82b86aba14271a0b0ad02b5fb3de7</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_22b9b27bae6a43398714bfa4cde9577f" label="PAL架构替换" extendcode="" event=""/>
<dataView id="obj_12d8a5b838114b6dbf03a95d5941131f" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_4fd8fa769cca401db034b26c6e0b3091" isshow="true" extendcode="" event="">
<button id="obj_664e9c305000446fa342f527b5f5136b" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_632f3fb79eb942eca93d29db9e7b8d12" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_715bf53fff9e47d5a875d66db3bb8f2a" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_851596a6e48744ec8864950ab62e8d44" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_52078d93732042bfb8b32f86dd75e5af" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_fcb0034c013f4e5eb80b09ab73c158f7" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_d76d90168f85450098cd5f982ad79f7b" refbuttonid="importDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="6" config="[{&quot;btnName&quot;:&quot;&quot;,&quot;formDefId&quot;:&quot;obj_c504beb31bc841ef96b6b2304257f7d5|93607580-1130-4522-aa30-a37d2467908a&quot;,&quot;formName&quot;:&quot;PAL架构替换&quot;,&quot;formExcelShowName&quot;:&quot;文件架构替换&quot;,&quot;maxRow&quot;:&quot;20000&quot;,&quot;javaEvents&quot;:[],&quot;enableAddImport&quot;:true,&quot;enableupdateimport&quot;:false,&quot;requiredImport&quot;:false,&quot;importStrategy&quot;:{&quot;addImport&quot;:{&quot;strategybase&quot;:&quot;onlyimportdata&quot;,&quot;boModels&quot;:[{&quot;boDefName&quot;:&quot;BO_EU_PAL_FRAMEWORK_TOOL&quot;,&quot;boItems&quot;:[{&quot;name&quot;:&quot;PALNAME&quot;,&quot;title&quot;:&quot;文件名称&quot;},{&quot;name&quot;:&quot;ERRORFRAMEWORK&quot;,&quot;title&quot;:&quot;错误架构&quot;},{&quot;name&quot;:&quot;CORRECTFRAMEWORK&quot;,&quot;title&quot;:&quot;正确架构&quot;},{&quot;name&quot;:&quot;PAID&quot;,&quot;title&quot;:&quot;文件Id&quot;},{&quot;name&quot;:&quot;RESULT&quot;,&quot;title&quot;:&quot;修改结果&quot;}]}]}}}]" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_ebdbe5b9186d43cda9125524083eaaf3" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_8857127bd1064a44a7dbb1a2b68413fe" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_47cdde7f6757472183a8d9766c912ead" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_234c41c7855a4e438eb42147083b294b" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_FRAMEWORK_TOOL" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="%7B%22behavior%22%3A%22%22%2C%22behaviorMobile%22%3A%22%22%2C%22h%22%3A%22%22%2C%22hUnit%22%3A%22px%22%2C%22ih%22%3A%22%22%2C%22ihUnit%22%3A%22px%22%2C%22isMask%22%3A0%2C%22sw%22%3A%22%22%2C%22swUnit%22%3A%22px%22%2C%22target%22%3A%22%22%2C%22title%22%3A%22%22%2C%22wUnit%22%3A%22px%22%2C%22w%22%3A%22%22%7D" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="obj_a9600e90beb1491484631fd77c761d44" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="309" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PALNAME" label="文件名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_af0b13e5a54f4cedb6e3a5520674e7d9" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="168" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ERRORFRAMEWORK" label="错误架构" orderindex="1" colbehaviortarget="inner" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="openmodifyform" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_a3cf7ca035bd41e6b535f0d6b87c1b18" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="214" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="CORRECTFRAMEWORK" label="正确架构" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_6a73be84418d4e228ba715abe9edd87a" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PAID" label="文件Id" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ccf94b8ca7874cfd8b81cd1f64a2f5b7" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="RESULT" label="修改结果" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_67dc8ea181d3415c8f66288524831591" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_dcc23e214abe4a19bdd9ad0b8ecd4846" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_9c25d97c738a44fd8e89cf7b306ff1ab" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_964fb139d057405fb704d24cfb821529" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_5d75158954234dd589df0e37d8ac8001" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_1b4f80e7626644ac8ea46edf2bd0cf17" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ae2e4d74932b4d49b59a354b45878b73" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_8827e5574411478a89db52ed27d026d4" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="12" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors>
<userextendbehavior id="openmodifyform" name="">
<templatecall>onclick%3D</templatecall>
<templatescript></templatescript>
</userextendbehavior>
</userextendbehaviors>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_aed82b86aba14271a0b0ad02b5fb3de7</id>
<createUser>admin</createUser>
<createTime>2022-10-13 22:20:19</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-14 00:41:37</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr8lTS+u7f3oZvQJOffDUI237cH5qcXSCfoQs3cgGx/5bilvIwAAd2JM0I5/1N5aFR</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_aed82b86aba14271a0b0ad02b5fb3de7</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_22b9b27bae6a43398714bfa4cde9577f" label="PAL架构替换" extendcode="" event=""/>
<dataView id="obj_12d8a5b838114b6dbf03a95d5941131f" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_4fd8fa769cca401db034b26c6e0b3091" isshow="true" extendcode="" event="">
<button id="obj_664e9c305000446fa342f527b5f5136b" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_632f3fb79eb942eca93d29db9e7b8d12" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_715bf53fff9e47d5a875d66db3bb8f2a" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_851596a6e48744ec8864950ab62e8d44" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_52078d93732042bfb8b32f86dd75e5af" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_fcb0034c013f4e5eb80b09ab73c158f7" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_d76d90168f85450098cd5f982ad79f7b" refbuttonid="importDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="6" config="[{&quot;btnName&quot;:&quot;&quot;,&quot;formDefId&quot;:&quot;obj_c504beb31bc841ef96b6b2304257f7d5|93607580-1130-4522-aa30-a37d2467908a&quot;,&quot;formName&quot;:&quot;PAL架构替换&quot;,&quot;formExcelShowName&quot;:&quot;文件架构替换&quot;,&quot;maxRow&quot;:&quot;20000&quot;,&quot;javaEvents&quot;:[],&quot;enableAddImport&quot;:true,&quot;enableupdateimport&quot;:false,&quot;requiredImport&quot;:false,&quot;importStrategy&quot;:{&quot;addImport&quot;:{&quot;strategybase&quot;:&quot;onlyimportdata&quot;,&quot;boModels&quot;:[{&quot;boDefName&quot;:&quot;BO_EU_PAL_FRAMEWORK_TOOL&quot;,&quot;boItems&quot;:[{&quot;name&quot;:&quot;PALNAME&quot;,&quot;title&quot;:&quot;文件名称&quot;},{&quot;name&quot;:&quot;ERRORFRAMEWORK&quot;,&quot;title&quot;:&quot;错误架构&quot;},{&quot;name&quot;:&quot;CORRECTFRAMEWORK&quot;,&quot;title&quot;:&quot;正确架构&quot;},{&quot;name&quot;:&quot;PAID&quot;,&quot;title&quot;:&quot;文件Id&quot;},{&quot;name&quot;:&quot;RESULT&quot;,&quot;title&quot;:&quot;修改结果&quot;}]}]}}}]" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_ebdbe5b9186d43cda9125524083eaaf3" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_8857127bd1064a44a7dbb1a2b68413fe" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_47cdde7f6757472183a8d9766c912ead" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_234c41c7855a4e438eb42147083b294b" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_FRAMEWORK_TOOL" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="%7B%22behavior%22%3A%22%22%2C%22behaviorMobile%22%3A%22%22%2C%22h%22%3A%22%22%2C%22hUnit%22%3A%22px%22%2C%22ih%22%3A%22%22%2C%22ihUnit%22%3A%22px%22%2C%22isMask%22%3A0%2C%22sw%22%3A%22%22%2C%22swUnit%22%3A%22px%22%2C%22target%22%3A%22%22%2C%22title%22%3A%22%22%2C%22wUnit%22%3A%22px%22%2C%22w%22%3A%22%22%7D" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="obj_a9600e90beb1491484631fd77c761d44" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="309" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PALNAME" label="文件名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_af0b13e5a54f4cedb6e3a5520674e7d9" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="168" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ERRORFRAMEWORK" label="错误架构" orderindex="1" colbehaviortarget="inner" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="openmodifyform" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_a3cf7ca035bd41e6b535f0d6b87c1b18" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="214" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="CORRECTFRAMEWORK" label="正确架构" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_6a73be84418d4e228ba715abe9edd87a" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PAID" label="文件Id" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ccf94b8ca7874cfd8b81cd1f64a2f5b7" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="RESULT" label="修改结果" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_67dc8ea181d3415c8f66288524831591" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_dcc23e214abe4a19bdd9ad0b8ecd4846" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_9c25d97c738a44fd8e89cf7b306ff1ab" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_964fb139d057405fb704d24cfb821529" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_5d75158954234dd589df0e37d8ac8001" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_1b4f80e7626644ac8ea46edf2bd0cf17" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ae2e4d74932b4d49b59a354b45878b73" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_8827e5574411478a89db52ed27d026d4" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="12" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors>
<userextendbehavior id="openmodifyform" name="">
<templatecall>onclick%3D</templatecall>
<templatescript></templatescript>
</userextendbehavior>
</userextendbehaviors>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_aed82b86aba14271a0b0ad02b5fb3de7</id>
<createUser>admin</createUser>
<createTime>2022-10-13 22:20:19</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-14 00:40:49</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr8lTS+u7f3oZvQJOffDUI237cH5qcXSCfoQs3cgGx/5bilvIwAAd2JM0I5/1N5aFR</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_aed82b86aba14271a0b0ad02b5fb3de7</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_22b9b27bae6a43398714bfa4cde9577f" label="PAL架构替换" extendcode="" event=""/>
<dataView id="obj_12d8a5b838114b6dbf03a95d5941131f" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_4fd8fa769cca401db034b26c6e0b3091" isshow="true" extendcode="" event="">
<button id="obj_664e9c305000446fa342f527b5f5136b" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_632f3fb79eb942eca93d29db9e7b8d12" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_715bf53fff9e47d5a875d66db3bb8f2a" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_851596a6e48744ec8864950ab62e8d44" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_52078d93732042bfb8b32f86dd75e5af" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_fcb0034c013f4e5eb80b09ab73c158f7" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_d76d90168f85450098cd5f982ad79f7b" refbuttonid="importDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="6" config="[{&quot;btnName&quot;:&quot;&quot;,&quot;formDefId&quot;:&quot;obj_c504beb31bc841ef96b6b2304257f7d5|93607580-1130-4522-aa30-a37d2467908a&quot;,&quot;formName&quot;:&quot;PAL架构替换&quot;,&quot;formExcelShowName&quot;:&quot;文件架构替换&quot;,&quot;maxRow&quot;:&quot;20000&quot;,&quot;javaEvents&quot;:[],&quot;enableAddImport&quot;:true,&quot;enableupdateimport&quot;:false,&quot;requiredImport&quot;:false,&quot;importStrategy&quot;:{&quot;addImport&quot;:{&quot;strategybase&quot;:&quot;onlyimportdata&quot;,&quot;boModels&quot;:[{&quot;boDefName&quot;:&quot;BO_EU_PAL_FRAMEWORK_TOOL&quot;,&quot;boItems&quot;:[{&quot;name&quot;:&quot;PALNAME&quot;,&quot;title&quot;:&quot;文件名称&quot;},{&quot;name&quot;:&quot;ERRORFRAMEWORK&quot;,&quot;title&quot;:&quot;错误架构&quot;},{&quot;name&quot;:&quot;CORRECTFRAMEWORK&quot;,&quot;title&quot;:&quot;正确架构&quot;},{&quot;name&quot;:&quot;PAID&quot;,&quot;title&quot;:&quot;文件Id&quot;},{&quot;name&quot;:&quot;RESULT&quot;,&quot;title&quot;:&quot;修改结果&quot;}]}]}}}]" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_ebdbe5b9186d43cda9125524083eaaf3" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_8857127bd1064a44a7dbb1a2b68413fe" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_47cdde7f6757472183a8d9766c912ead" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_234c41c7855a4e438eb42147083b294b" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_FRAMEWORK_TOOL" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="%7B%22behavior%22%3A%22%22%2C%22behaviorMobile%22%3A%22%22%2C%22h%22%3A%22%22%2C%22hUnit%22%3A%22px%22%2C%22ih%22%3A%22%22%2C%22ihUnit%22%3A%22px%22%2C%22isMask%22%3A0%2C%22sw%22%3A%22%22%2C%22swUnit%22%3A%22px%22%2C%22target%22%3A%22%22%2C%22title%22%3A%22%22%2C%22wUnit%22%3A%22px%22%2C%22w%22%3A%22%22%7D" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="obj_a9600e90beb1491484631fd77c761d44" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="309" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PALNAME" label="文件名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_af0b13e5a54f4cedb6e3a5520674e7d9" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="168" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ERRORFRAMEWORK" label="错误架构" orderindex="1" colbehaviortarget="inner" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="openmodifyform" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_a3cf7ca035bd41e6b535f0d6b87c1b18" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="214" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="CORRECTFRAMEWORK" label="正确架构" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_6a73be84418d4e228ba715abe9edd87a" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PAID" label="文件Id" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ccf94b8ca7874cfd8b81cd1f64a2f5b7" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="RESULT" label="修改结果" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_67dc8ea181d3415c8f66288524831591" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_dcc23e214abe4a19bdd9ad0b8ecd4846" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_9c25d97c738a44fd8e89cf7b306ff1ab" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_964fb139d057405fb704d24cfb821529" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_5d75158954234dd589df0e37d8ac8001" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_1b4f80e7626644ac8ea46edf2bd0cf17" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ae2e4d74932b4d49b59a354b45878b73" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_8827e5574411478a89db52ed27d026d4" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="12" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors>
<userextendbehavior id="openmodifyform" name="">
<templatecall>onclick%3D</templatecall>
<templatescript></templatescript>
</userextendbehavior>
</userextendbehaviors>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_aed82b86aba14271a0b0ad02b5fb3de7</id>
<createUser>admin</createUser>
<createTime>2022-10-13 22:20:19</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-14 00:39:41</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr8lTS+u7f3oZvQJOffDUI237cH5qcXSCfoQs3cgGx/5bilvIwAAd2JM0I5/1N5aFR</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_aed82b86aba14271a0b0ad02b5fb3de7</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_22b9b27bae6a43398714bfa4cde9577f" label="PAL架构替换" extendcode="" event=""/>
<dataView id="obj_12d8a5b838114b6dbf03a95d5941131f" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_4fd8fa769cca401db034b26c6e0b3091" isshow="true" extendcode="" event="">
<button id="obj_664e9c305000446fa342f527b5f5136b" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_632f3fb79eb942eca93d29db9e7b8d12" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_715bf53fff9e47d5a875d66db3bb8f2a" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_851596a6e48744ec8864950ab62e8d44" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_52078d93732042bfb8b32f86dd75e5af" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_fcb0034c013f4e5eb80b09ab73c158f7" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_d76d90168f85450098cd5f982ad79f7b" refbuttonid="importDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="6" config="[{&quot;btnName&quot;:&quot;&quot;,&quot;formDefId&quot;:&quot;obj_c504beb31bc841ef96b6b2304257f7d5|93607580-1130-4522-aa30-a37d2467908a&quot;,&quot;formName&quot;:&quot;PAL架构替换&quot;,&quot;formExcelShowName&quot;:&quot;文件架构替换&quot;,&quot;maxRow&quot;:&quot;20000&quot;,&quot;javaEvents&quot;:[],&quot;enableAddImport&quot;:true,&quot;enableupdateimport&quot;:false,&quot;requiredImport&quot;:false,&quot;importStrategy&quot;:{&quot;addImport&quot;:{&quot;strategybase&quot;:&quot;onlyimportdata&quot;,&quot;boModels&quot;:[{&quot;boDefName&quot;:&quot;BO_EU_PAL_FRAMEWORK_TOOL&quot;,&quot;boItems&quot;:[{&quot;name&quot;:&quot;PALNAME&quot;,&quot;title&quot;:&quot;文件名称&quot;},{&quot;name&quot;:&quot;ERRORFRAMEWORK&quot;,&quot;title&quot;:&quot;错误架构&quot;},{&quot;name&quot;:&quot;CORRECTFRAMEWORK&quot;,&quot;title&quot;:&quot;正确架构&quot;},{&quot;name&quot;:&quot;PAID&quot;,&quot;title&quot;:&quot;文件Id&quot;},{&quot;name&quot;:&quot;RESULT&quot;,&quot;title&quot;:&quot;修改结果&quot;}]}]}}}]" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_ebdbe5b9186d43cda9125524083eaaf3" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_8857127bd1064a44a7dbb1a2b68413fe" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_47cdde7f6757472183a8d9766c912ead" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_234c41c7855a4e438eb42147083b294b" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_FRAMEWORK_TOOL" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="%7B%22behavior%22%3A%22%22%2C%22behaviorMobile%22%3A%22%22%2C%22h%22%3A%22%22%2C%22hUnit%22%3A%22px%22%2C%22ih%22%3A%22%22%2C%22ihUnit%22%3A%22px%22%2C%22isMask%22%3A0%2C%22sw%22%3A%22%22%2C%22swUnit%22%3A%22px%22%2C%22target%22%3A%22%22%2C%22title%22%3A%22%22%2C%22wUnit%22%3A%22px%22%2C%22w%22%3A%22%22%7D" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="obj_a9600e90beb1491484631fd77c761d44" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="309" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PALNAME" label="文件名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_af0b13e5a54f4cedb6e3a5520674e7d9" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="168" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ERRORFRAMEWORK" label="错误架构" orderindex="1" colbehaviortarget="inner" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="openmodifyform" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_a3cf7ca035bd41e6b535f0d6b87c1b18" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="214" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="CORRECTFRAMEWORK" label="正确架构" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_6a73be84418d4e228ba715abe9edd87a" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PAID" label="文件Id" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ccf94b8ca7874cfd8b81cd1f64a2f5b7" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="RESULT" label="修改结果" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_67dc8ea181d3415c8f66288524831591" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_dcc23e214abe4a19bdd9ad0b8ecd4846" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_9c25d97c738a44fd8e89cf7b306ff1ab" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_964fb139d057405fb704d24cfb821529" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_5d75158954234dd589df0e37d8ac8001" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_1b4f80e7626644ac8ea46edf2bd0cf17" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ae2e4d74932b4d49b59a354b45878b73" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_8827e5574411478a89db52ed27d026d4" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="12" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors>
<userextendbehavior id="openmodifyform" name="">
<templatecall>onclick%3D</templatecall>
<templatescript></templatescript>
</userextendbehavior>
</userextendbehaviors>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_aed82b86aba14271a0b0ad02b5fb3de7</id>
<createUser>admin</createUser>
<createTime>2022-10-13 22:20:19</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-14 00:38:53</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr8lTS+u7f3oZvQJOffDUI237cH5qcXSCfoQs3cgGx/5bilvIwAAd2JM0I5/1N5aFR</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_aed82b86aba14271a0b0ad02b5fb3de7</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_22b9b27bae6a43398714bfa4cde9577f" label="PAL架构替换" extendcode="" event=""/>
<dataView id="obj_12d8a5b838114b6dbf03a95d5941131f" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_4fd8fa769cca401db034b26c6e0b3091" isshow="true" extendcode="" event="">
<button id="obj_664e9c305000446fa342f527b5f5136b" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_632f3fb79eb942eca93d29db9e7b8d12" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_715bf53fff9e47d5a875d66db3bb8f2a" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_851596a6e48744ec8864950ab62e8d44" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_52078d93732042bfb8b32f86dd75e5af" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_fcb0034c013f4e5eb80b09ab73c158f7" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_d76d90168f85450098cd5f982ad79f7b" refbuttonid="importDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="6" config="[{&quot;btnName&quot;:&quot;&quot;,&quot;formDefId&quot;:&quot;obj_c504beb31bc841ef96b6b2304257f7d5|93607580-1130-4522-aa30-a37d2467908a&quot;,&quot;formName&quot;:&quot;PAL架构替换&quot;,&quot;formExcelShowName&quot;:&quot;文件架构替换&quot;,&quot;maxRow&quot;:&quot;20000&quot;,&quot;javaEvents&quot;:[],&quot;enableAddImport&quot;:true,&quot;enableupdateimport&quot;:false,&quot;requiredImport&quot;:false,&quot;importStrategy&quot;:{&quot;addImport&quot;:{&quot;strategybase&quot;:&quot;onlyimportdata&quot;,&quot;boModels&quot;:[{&quot;boDefName&quot;:&quot;BO_EU_PAL_FRAMEWORK_TOOL&quot;,&quot;boItems&quot;:[{&quot;name&quot;:&quot;PALNAME&quot;,&quot;title&quot;:&quot;文件名称&quot;},{&quot;name&quot;:&quot;ERRORFRAMEWORK&quot;,&quot;title&quot;:&quot;错误架构&quot;},{&quot;name&quot;:&quot;CORRECTFRAMEWORK&quot;,&quot;title&quot;:&quot;正确架构&quot;},{&quot;name&quot;:&quot;PAID&quot;,&quot;title&quot;:&quot;文件Id&quot;},{&quot;name&quot;:&quot;RESULT&quot;,&quot;title&quot;:&quot;修改结果&quot;}]}]}}}]" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_ebdbe5b9186d43cda9125524083eaaf3" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_8857127bd1064a44a7dbb1a2b68413fe" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_47cdde7f6757472183a8d9766c912ead" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_234c41c7855a4e438eb42147083b294b" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_FRAMEWORK_TOOL" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="%7B%22behavior%22%3A%22%22%2C%22behaviorMobile%22%3A%22%22%2C%22h%22%3A%22%22%2C%22hUnit%22%3A%22px%22%2C%22ih%22%3A%22%22%2C%22ihUnit%22%3A%22px%22%2C%22isMask%22%3A0%2C%22sw%22%3A%22%22%2C%22swUnit%22%3A%22px%22%2C%22target%22%3A%22%22%2C%22title%22%3A%22%22%2C%22wUnit%22%3A%22px%22%2C%22w%22%3A%22%22%7D" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="obj_a9600e90beb1491484631fd77c761d44" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="309" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PALNAME" label="文件名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_af0b13e5a54f4cedb6e3a5520674e7d9" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="168" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ERRORFRAMEWORK" label="错误架构" orderindex="1" colbehaviortarget="inner" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="openmodifyform" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_a3cf7ca035bd41e6b535f0d6b87c1b18" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="214" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="CORRECTFRAMEWORK" label="正确架构" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_6a73be84418d4e228ba715abe9edd87a" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PAID" label="文件Id" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ccf94b8ca7874cfd8b81cd1f64a2f5b7" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="RESULT" label="修改结果" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_67dc8ea181d3415c8f66288524831591" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_dcc23e214abe4a19bdd9ad0b8ecd4846" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_9c25d97c738a44fd8e89cf7b306ff1ab" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_964fb139d057405fb704d24cfb821529" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_5d75158954234dd589df0e37d8ac8001" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_1b4f80e7626644ac8ea46edf2bd0cf17" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ae2e4d74932b4d49b59a354b45878b73" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_8827e5574411478a89db52ed27d026d4" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="12" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors>
<userextendbehavior id="openmodifyform" name="">
<templatecall>onclick%3D</templatecall>
<templatescript></templatescript>
</userextendbehavior>
</userextendbehaviors>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_aed82b86aba14271a0b0ad02b5fb3de7</id>
<createUser>admin</createUser>
<createTime>2022-10-13 22:20:19</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-14 00:26:55</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr8lTS+u7f3oZvQJOffDUI237cH5qcXSCfoQs3cgGx/5bilvIwAAd2JM0I5/1N5aFR</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_aed82b86aba14271a0b0ad02b5fb3de7</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_22b9b27bae6a43398714bfa4cde9577f" label="PAL架构替换" extendcode="" event=""/>
<dataView id="obj_12d8a5b838114b6dbf03a95d5941131f" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_4fd8fa769cca401db034b26c6e0b3091" isshow="true" extendcode="" event="">
<button id="obj_664e9c305000446fa342f527b5f5136b" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_632f3fb79eb942eca93d29db9e7b8d12" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_715bf53fff9e47d5a875d66db3bb8f2a" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_851596a6e48744ec8864950ab62e8d44" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_52078d93732042bfb8b32f86dd75e5af" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_fcb0034c013f4e5eb80b09ab73c158f7" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_d76d90168f85450098cd5f982ad79f7b" refbuttonid="importDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="6" config="[{&quot;btnName&quot;:&quot;&quot;,&quot;formDefId&quot;:&quot;obj_c504beb31bc841ef96b6b2304257f7d5|93607580-1130-4522-aa30-a37d2467908a&quot;,&quot;formName&quot;:&quot;PAL架构替换&quot;,&quot;formExcelShowName&quot;:&quot;文件架构替换&quot;,&quot;maxRow&quot;:&quot;20000&quot;,&quot;javaEvents&quot;:[],&quot;enableAddImport&quot;:true,&quot;enableupdateimport&quot;:false,&quot;requiredImport&quot;:false,&quot;importStrategy&quot;:{&quot;addImport&quot;:{&quot;strategybase&quot;:&quot;onlyimportdata&quot;,&quot;boModels&quot;:[{&quot;boDefName&quot;:&quot;BO_EU_PAL_FRAMEWORK_TOOL&quot;,&quot;boItems&quot;:[{&quot;name&quot;:&quot;PALNAME&quot;,&quot;title&quot;:&quot;文件名称&quot;},{&quot;name&quot;:&quot;ERRORFRAMEWORK&quot;,&quot;title&quot;:&quot;错误架构&quot;},{&quot;name&quot;:&quot;CORRECTFRAMEWORK&quot;,&quot;title&quot;:&quot;正确架构&quot;},{&quot;name&quot;:&quot;PAID&quot;,&quot;title&quot;:&quot;文件Id&quot;},{&quot;name&quot;:&quot;RESULT&quot;,&quot;title&quot;:&quot;修改结果&quot;}]}]}}}]" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_ebdbe5b9186d43cda9125524083eaaf3" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_8857127bd1064a44a7dbb1a2b68413fe" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_47cdde7f6757472183a8d9766c912ead" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_234c41c7855a4e438eb42147083b294b" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_FRAMEWORK_TOOL" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="%7B%22behavior%22%3A%22%22%2C%22behaviorMobile%22%3A%22%22%2C%22h%22%3A%22%22%2C%22hUnit%22%3A%22px%22%2C%22ih%22%3A%22%22%2C%22ihUnit%22%3A%22px%22%2C%22isMask%22%3A0%2C%22sw%22%3A%22%22%2C%22swUnit%22%3A%22px%22%2C%22target%22%3A%22%22%2C%22title%22%3A%22%22%2C%22wUnit%22%3A%22px%22%2C%22w%22%3A%22%22%7D" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="obj_a9600e90beb1491484631fd77c761d44" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="309" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PALNAME" label="文件名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_af0b13e5a54f4cedb6e3a5520674e7d9" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="168" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ERRORFRAMEWORK" label="错误架构" orderindex="1" colbehaviortarget="inner" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="openmodifyform" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_a3cf7ca035bd41e6b535f0d6b87c1b18" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="214" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="CORRECTFRAMEWORK" label="正确架构" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_6a73be84418d4e228ba715abe9edd87a" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PAID" label="文件Id" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ccf94b8ca7874cfd8b81cd1f64a2f5b7" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="RESULT" label="修改结果" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_67dc8ea181d3415c8f66288524831591" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_dcc23e214abe4a19bdd9ad0b8ecd4846" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_9c25d97c738a44fd8e89cf7b306ff1ab" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_964fb139d057405fb704d24cfb821529" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_5d75158954234dd589df0e37d8ac8001" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_1b4f80e7626644ac8ea46edf2bd0cf17" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ae2e4d74932b4d49b59a354b45878b73" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_8827e5574411478a89db52ed27d026d4" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="12" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors>
<userextendbehavior id="openmodifyform" name="">
<templatecall>onclick%3D</templatecall>
<templatescript></templatescript>
</userextendbehavior>
</userextendbehaviors>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_aed82b86aba14271a0b0ad02b5fb3de7</id>
<createUser>admin</createUser>
<createTime>2022-10-13 22:20:19</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-14 00:21:50</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr8lTS+u7f3oZvQJOffDUI237cH5qcXSCfoQs3cgGx/5bilvIwAAd2JM0I5/1N5aFR</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_aed82b86aba14271a0b0ad02b5fb3de7</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_22b9b27bae6a43398714bfa4cde9577f" label="PAL架构替换" extendcode="" event=""/>
<dataView id="obj_12d8a5b838114b6dbf03a95d5941131f" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_4fd8fa769cca401db034b26c6e0b3091" isshow="true" extendcode="" event="">
<button id="obj_664e9c305000446fa342f527b5f5136b" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_632f3fb79eb942eca93d29db9e7b8d12" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_715bf53fff9e47d5a875d66db3bb8f2a" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_851596a6e48744ec8864950ab62e8d44" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_52078d93732042bfb8b32f86dd75e5af" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_fcb0034c013f4e5eb80b09ab73c158f7" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_d76d90168f85450098cd5f982ad79f7b" refbuttonid="importDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="6" config="[{&quot;btnName&quot;:&quot;&quot;,&quot;formDefId&quot;:&quot;obj_c504beb31bc841ef96b6b2304257f7d5|93607580-1130-4522-aa30-a37d2467908a&quot;,&quot;formName&quot;:&quot;PAL架构替换&quot;,&quot;formExcelShowName&quot;:&quot;文件架构替换&quot;,&quot;maxRow&quot;:&quot;20000&quot;,&quot;javaEvents&quot;:[],&quot;enableAddImport&quot;:true,&quot;enableupdateimport&quot;:false,&quot;requiredImport&quot;:false,&quot;importStrategy&quot;:{&quot;addImport&quot;:{&quot;strategybase&quot;:&quot;onlyimportdata&quot;,&quot;boModels&quot;:[{&quot;boDefName&quot;:&quot;BO_EU_PAL_FRAMEWORK_TOOL&quot;,&quot;boItems&quot;:[{&quot;name&quot;:&quot;PALNAME&quot;,&quot;title&quot;:&quot;文件名称&quot;},{&quot;name&quot;:&quot;ERRORFRAMEWORK&quot;,&quot;title&quot;:&quot;错误架构&quot;},{&quot;name&quot;:&quot;CORRECTFRAMEWORK&quot;,&quot;title&quot;:&quot;正确架构&quot;},{&quot;name&quot;:&quot;PAID&quot;,&quot;title&quot;:&quot;文件Id&quot;},{&quot;name&quot;:&quot;RESULT&quot;,&quot;title&quot;:&quot;修改结果&quot;}]}]}}}]" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_ebdbe5b9186d43cda9125524083eaaf3" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_8857127bd1064a44a7dbb1a2b68413fe" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_47cdde7f6757472183a8d9766c912ead" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_234c41c7855a4e438eb42147083b294b" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_FRAMEWORK_TOOL" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="%7B%22behavior%22%3A%22%22%2C%22behaviorMobile%22%3A%22%22%2C%22h%22%3A%22%22%2C%22hUnit%22%3A%22px%22%2C%22ih%22%3A%22%22%2C%22ihUnit%22%3A%22px%22%2C%22isMask%22%3A0%2C%22sw%22%3A%22%22%2C%22swUnit%22%3A%22px%22%2C%22target%22%3A%22%22%2C%22title%22%3A%22%22%2C%22wUnit%22%3A%22px%22%2C%22w%22%3A%22%22%7D" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="obj_a9600e90beb1491484631fd77c761d44" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="309" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PALNAME" label="文件名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_af0b13e5a54f4cedb6e3a5520674e7d9" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="168" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ERRORFRAMEWORK" label="错误架构" orderindex="1" colbehaviortarget="inner" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="openmodifyform" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_a3cf7ca035bd41e6b535f0d6b87c1b18" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="214" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="CORRECTFRAMEWORK" label="正确架构" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_6a73be84418d4e228ba715abe9edd87a" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PAID" label="文件Id" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ccf94b8ca7874cfd8b81cd1f64a2f5b7" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="RESULT" label="修改结果" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_67dc8ea181d3415c8f66288524831591" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_dcc23e214abe4a19bdd9ad0b8ecd4846" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_9c25d97c738a44fd8e89cf7b306ff1ab" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_964fb139d057405fb704d24cfb821529" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_5d75158954234dd589df0e37d8ac8001" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_1b4f80e7626644ac8ea46edf2bd0cf17" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ae2e4d74932b4d49b59a354b45878b73" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_8827e5574411478a89db52ed27d026d4" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="12" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors>
<userextendbehavior id="openmodifyform" name="">
<templatecall>onclick%3D</templatecall>
<templatescript></templatescript>
</userextendbehavior>
</userextendbehaviors>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_aed82b86aba14271a0b0ad02b5fb3de7</id>
<createUser>admin</createUser>
<createTime>2022-10-13 22:20:19</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-14 00:21:37</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr8lTS+u7f3oZvQJOffDUI237cH5qcXSCfoQs3cgGx/5bilvIwAAd2JM0I5/1N5aFR</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_aed82b86aba14271a0b0ad02b5fb3de7</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_22b9b27bae6a43398714bfa4cde9577f" label="PAL架构替换" extendcode="" event=""/>
<dataView id="obj_12d8a5b838114b6dbf03a95d5941131f" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_4fd8fa769cca401db034b26c6e0b3091" isshow="true" extendcode="" event="">
<button id="obj_664e9c305000446fa342f527b5f5136b" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_632f3fb79eb942eca93d29db9e7b8d12" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_715bf53fff9e47d5a875d66db3bb8f2a" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_851596a6e48744ec8864950ab62e8d44" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_52078d93732042bfb8b32f86dd75e5af" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_fcb0034c013f4e5eb80b09ab73c158f7" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_d76d90168f85450098cd5f982ad79f7b" refbuttonid="importDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="6" config="[{&quot;btnName&quot;:&quot;&quot;,&quot;formDefId&quot;:&quot;obj_c504beb31bc841ef96b6b2304257f7d5|93607580-1130-4522-aa30-a37d2467908a&quot;,&quot;formName&quot;:&quot;PAL架构替换&quot;,&quot;formExcelShowName&quot;:&quot;文件架构替换&quot;,&quot;maxRow&quot;:&quot;20000&quot;,&quot;javaEvents&quot;:[],&quot;enableAddImport&quot;:true,&quot;enableupdateimport&quot;:false,&quot;requiredImport&quot;:false,&quot;importStrategy&quot;:{&quot;addImport&quot;:{&quot;strategybase&quot;:&quot;onlyimportdata&quot;,&quot;boModels&quot;:[{&quot;boDefName&quot;:&quot;BO_EU_PAL_FRAMEWORK_TOOL&quot;,&quot;boItems&quot;:[{&quot;name&quot;:&quot;PALNAME&quot;,&quot;title&quot;:&quot;文件名称&quot;},{&quot;name&quot;:&quot;ERRORFRAMEWORK&quot;,&quot;title&quot;:&quot;错误架构&quot;},{&quot;name&quot;:&quot;CORRECTFRAMEWORK&quot;,&quot;title&quot;:&quot;正确架构&quot;},{&quot;name&quot;:&quot;PAID&quot;,&quot;title&quot;:&quot;文件Id&quot;},{&quot;name&quot;:&quot;RESULT&quot;,&quot;title&quot;:&quot;修改结果&quot;}]}]}}}]" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_ebdbe5b9186d43cda9125524083eaaf3" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_8857127bd1064a44a7dbb1a2b68413fe" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_47cdde7f6757472183a8d9766c912ead" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_234c41c7855a4e438eb42147083b294b" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_FRAMEWORK_TOOL" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="%7B%22behavior%22%3A%22%22%2C%22behaviorMobile%22%3A%22%22%2C%22h%22%3A%22%22%2C%22hUnit%22%3A%22px%22%2C%22ih%22%3A%22%22%2C%22ihUnit%22%3A%22px%22%2C%22isMask%22%3A0%2C%22sw%22%3A%22%22%2C%22swUnit%22%3A%22px%22%2C%22target%22%3A%22%22%2C%22title%22%3A%22%22%2C%22wUnit%22%3A%22px%22%2C%22w%22%3A%22%22%7D" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="obj_a9600e90beb1491484631fd77c761d44" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="309" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PALNAME" label="文件名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_af0b13e5a54f4cedb6e3a5520674e7d9" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="168" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ERRORFRAMEWORK" label="错误架构" orderindex="1" colbehaviortarget="inner" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="openmodifyform" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_a3cf7ca035bd41e6b535f0d6b87c1b18" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="214" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="CORRECTFRAMEWORK" label="正确架构" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_6a73be84418d4e228ba715abe9edd87a" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PAID" label="文件Id" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ccf94b8ca7874cfd8b81cd1f64a2f5b7" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="100px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="RESULT" label="修改结果" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_67dc8ea181d3415c8f66288524831591" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_dcc23e214abe4a19bdd9ad0b8ecd4846" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_9c25d97c738a44fd8e89cf7b306ff1ab" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_964fb139d057405fb704d24cfb821529" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_5d75158954234dd589df0e37d8ac8001" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_1b4f80e7626644ac8ea46edf2bd0cf17" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ae2e4d74932b4d49b59a354b45878b73" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_8827e5574411478a89db52ed27d026d4" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120px" colALias="" colTableAlias="" colTable="BO_EU_PAL_FRAMEWORK_TOOL" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="12" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors>
<userextendbehavior id="openmodifyform" name="">
<templatecall>onclick%3D</templatecall>
<templatescript></templatescript>
</userextendbehavior>
</userextendbehaviors>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,115 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_b5f395389a354557ac73e2eef0315533</id>
<createUser>admin</createUser>
<createTime>2022-10-09 13:02:48</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-10 17:35:01</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrIgo8tLWQCPm97EdrT7DBipMg+PeFe6Ga/DwptVFEiKCRO9YVa0ltwvAM5UxoarMc</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_b5f395389a354557ac73e2eef0315533</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_42ff3fd71fdd42e08b418e974147a13c" label="文件状态批量修改" extendcode="" event=""/>
<dataView id="obj_770010ea990748c98b264314a592ace8" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_3cc3bcf9a7a148b0a000442d1a302639" isshow="true" extendcode="" event="">
<button id="obj_af2a3e3a18ac4abda236c1789f62d6d9" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_bc9653482218466dbafb8bbadffa159c" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_d1ce8cb94cc948f083f50043dcb0fde6" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_07c4c238a12d453498e856035d9643b3" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_ba2f0a30d5be4c9f9827b566b255ba37" refbuttonid="obj_3fa876e649524e29981e39194a49df46" cls="" fontColor="" bgColor="#d9d9d9" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_d1176f7720d64c8ba7b278be0150d631" refbuttonid="obj_1a3ca2ee7799444c8eb40c63f2db4310" cls="" fontColor="" bgColor="#b5c3d2" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_c8222f8362ff4da09d714f69f5f13bab" refbuttonid="obj_01673e8348c748f9bb61d274cbc4cd79" cls="" fontColor="" bgColor="#b3d0d7" security="" isshow="true" orderindex="6" mobileShow="true" event="" selectShow="false"/>
<button id="obj_6c5791418fb849c7868c4a07912f1a52" refbuttonid="obj_5ab67f3e20304148926ded24cf1f91cb" cls="" fontColor="" bgColor="#b5c3d2" security="" isshow="true" orderindex="7" mobileShow="false" event="" selectShow="false"/>
<button id="obj_e7ad0ce3b3914ccf8792c57d00af2701" refbuttonid="obj_3a98ad935c8744f48d2fb9e79c1cc85e" cls="" fontColor="" bgColor="#c6d9f0" security="" isshow="true" orderindex="8" mobileShow="false" event="" selectShow="false"/>
<button id="obj_2a035cd067374865b617918f69dce7d9" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="9" mobileShow="false" event="" selectShow="false"/>
<button id="obj_8e3f6e1317ae4f1189db13d4a6c25477" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="10" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_123f7e6eb6ee462b92b3c4f82c0188c4" isshow="true" layoutType="tile" tdGroup="4" tileLayout="x" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="true">
<likecondition id="obj_22ab80ecb4384c93a882c7a27368ddb0" field="PLNAME" extend1="" label="文件名称" comparetype="like" uiname="TEXT" relationship="" uidefault="" uicomponent="文本" uiref="" required="false" security="" orderindex="0" event=""/>
<likecondition id="obj_9f3d90728d564df8ae5581d57867aafd" field="PLMETHODID" extend1="" label="文件类型" comparetype="=" uiname="TEXT" relationship="AND" uidefault="" uicomponent="列表" uiref="{&quot;type&quot;:&quot;NORMAL&quot;,&quot;cons&quot;:&quot;process.epc:epc模型|process.flowchart:泳道图模型|control.policy:制度模型|data.form:表单模型|process.evc:架构模型|org.role:角色模型|control.kpi:绩效模型&quot;,&quot;showAdv&quot;:false}" required="false" security="" orderindex="1" event=""/>
<likecondition id="obj_33a60133c8da48ee95081c13c741c4d5" field="ISPUBLISH" extend1="" label="发布状态" comparetype="=" uiname="NUMBER" relationship="" uidefault="" uicomponent="列表" uiref="{&quot;type&quot;:&quot;NORMAL&quot;,&quot;cons&quot;:&quot;0:未发布|1:已发布&quot;,&quot;showAdv&quot;:false}" required="false" security="" orderindex="2" event=""/>
<likecondition id="obj_96ca23aaeeb0461ab64e0b6eb2580a1f" field="ISAPPROVAL" extend1="" label="审批状态" comparetype="=" uiname="NUMBER" relationship="" uidefault="" uicomponent="列表" uiref="{&quot;type&quot;:&quot;NORMAL&quot;,&quot;cons&quot;:&quot;0:设计中|1:审批中&quot;,&quot;showAdv&quot;:false}" required="false" security="" orderindex="3" event=""/>
<likecondition id="obj_af20255b921145c595e774928cddd8cd" field="ISSTOP" extend1="" label="停用状态" comparetype="=" uiname="NUMBER" relationship="" uidefault="" uicomponent="列表" uiref="{&quot;type&quot;:&quot;NORMAL&quot;,&quot;cons&quot;:&quot;0:在用|1:停用&quot;,&quot;showAdv&quot;:false}" required="false" security="" orderindex="4" event=""/>
</searcher>
<navTree id="obj_81f18c49af8a4cdc80a535cb5de7fa3a" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_b35a8081fdd349e382eeb5c73885b3b6" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_4878ff4edeeb45b081cd9e6fe23e10e0" isshow="true" autoSearch="true" customSet="true" select="false" datasource="sql:SELECT * FROM app_act_coe_pal_repository where PLMETHODID in ('org.role','data.form','process.flowchart','process.epc','control.policy','process.evc','control.kpi')" countSql="" pagesize="100" event="" rowDefHeight="25" showCheckBox="true" ismultiple="false" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="%7B%22behavior%22%3A%22%u6253%u5F00%u6A21%u578B%22%2C%22behaviorMobile%22%3A%22%22%2C%22h%22%3A%22%22%2C%22hUnit%22%3A%22px%22%2C%22ih%22%3A%22%22%2C%22ihUnit%22%3A%22px%22%2C%22isMask%22%3A0%2C%22sw%22%3A%22%22%2C%22swUnit%22%3A%22px%22%2C%22target%22%3A%22%22%2C%22title%22%3A%22%22%2C%22wUnit%22%3A%22px%22%2C%22w%22%3A%22%22%7D" extendsql="" identifier="ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="ebd68e1e-4b9a-44c7-9b1c-3d374947c392" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="295" colALias="" colTableAlias="" colTable="APP_ACT_COE_PAL_REPOSITORY" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLNAME" label="文件名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="obj_bd52e5012341419f82151d1f54c9357c" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="18cc2cff-408c-4fda-98b2-125186303631" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="99" colALias="" colTableAlias="" colTable="APP_ACT_COE_PAL_REPOSITORY" length="8" required="0" align="center" showrule="{&quot;type&quot;:&quot;NORMAL&quot;,&quot;cons&quot;:&quot;1:V1.0|2:V2.0|3:V3.0|4:V4.0|5:V5.0|6:V6.0|7:V7.0|8:V8.0&quot;,&quot;showAdv&quot;:false}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLVER" label="文件版本" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="26dabc03-352f-45ce-a5de-c6d5e3538540" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="80" colALias="" colTableAlias="" colTable="APP_ACT_COE_PAL_REPOSITORY" length="3" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLLEVEL" label="PLLEVEL" orderindex="2" colbehaviortarget="" ishidden="true" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="78cbf7ae-b391-46a5-a5c1-d99c909d4ec2" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="88" colALias="" colTableAlias="" colTable="APP_ACT_COE_PAL_REPOSITORY" length="2" required="0" align="center" showrule="{&quot;type&quot;:&quot;NORMAL&quot;,&quot;cons&quot;:&quot;1:是|0:否&quot;,&quot;showAdv&quot;:false}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ISUSE" label="是否在用" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="0f579fcb-cd8f-4c02-89ba-6a88b28254e9" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="139" colALias="" colTableAlias="" colTable="APP_ACT_COE_PAL_REPOSITORY" length="2" required="0" align="center" showrule="{&quot;showAdv&quot;:false,&quot;type&quot;:&quot;NORMAL&quot;,&quot;cons&quot;:&quot;0:未发布|1:已发布&quot;,&quot;rainbowTab&quot;:{&quot;0&quot;:&quot;#ffe9c4&quot;,&quot;1&quot;:&quot;#d1e8ff&quot;}}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ISPUBLISH" label="发布状态" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="004ba583-011c-4fa7-8df0-821d1233a3b9" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="80" colALias="" colTableAlias="" colTable="APP_ACT_COE_PAL_REPOSITORY" length="2" required="0" align="center" showrule="{&quot;type&quot;:&quot;NORMAL&quot;,&quot;cons&quot;:&quot;0:设计中|1:审批中&quot;,&quot;showAdv&quot;:false}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ISAPPROVAL" label="审批状态" orderindex="5" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="03bcea60-9150-4c8a-9d50-d8d0a62fd5ad" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="105" colALias="" colTableAlias="" colTable="APP_ACT_COE_PAL_REPOSITORY" length="2" required="0" align="center" showrule="{&quot;type&quot;:&quot;NORMAL&quot;,&quot;cons&quot;:&quot;0:在用|1:停用&quot;,&quot;showAdv&quot;:false}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ISSTOP" label="停用状态" orderindex="6" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="b89af774-7237-43f1-b765-a2b613854f8c" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="133" colALias="" colTableAlias="" colTable="APP_ACT_COE_PAL_REPOSITORY" length="36" required="0" align="center" showrule="{&quot;type&quot;:&quot;NORMAL&quot;,&quot;cons&quot;:&quot;control.policy:制度文件|process.flowchart:泳道图模型|data.form:表单模型|process.epc:epc模型|process.evc:架构模型|org.role:角色模型|control.kpi:绩效模型&quot;,&quot;showAdv&quot;:false,&quot;rainbowTab&quot;:{&quot;data.form&quot;:&quot;#d1e8ff&quot;,&quot;process.epc&quot;:&quot;#ffe9c4&quot;}}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLMETHODID" label="文件类型" orderindex="7" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="f822b6f3-88ae-407a-a39a-0014fa8d1176" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="288" colALias="" colTableAlias="" colTable="APP_ACT_COE_PAL_REPOSITORY" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ID" label="文件ID" orderindex="8" colbehaviortarget="" ishidden="true" export="true" backHide="false" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="6694cdba-bbd4-44ec-8d6c-987748b93efc" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="167" colALias="" colTableAlias="" colTable="APP_ACT_COE_PAL_REPOSITORY" length="7" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="CREATEDATE" label="模型创建日期" orderindex="9" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="ade57fa9-0806-4e58-b9da-3fb063f0320f" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="160" colALias="" colTableAlias="" colTable="APP_ACT_COE_PAL_REPOSITORY" length="7" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PUBLISHDATE" label="发布日期" orderindex="10" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons>
<userextendbutton id="obj_3fa876e649524e29981e39194a49df46" icon="" label="改为设计态" tip="">
<eventcall></eventcall>
<eventscript>var%20data%20%3D%20eventContext.DWApi.grid.getCheckedData%28%29%3B%0Aif%28data%5B0%5D%3D%3Dnull%7C%7Cdata.length%3E1%29%7B%0A%20%20eventContext.instance.%24message%28%7B%0A%20%20type%3A%22error%22%2C%0A%20%20message%3A%22%u8BF7%u9009%u62E9%u5355%u6761%u6570%u636E%uFF01%22%0A%7D%29%3B%0A%7Delse%7B%0A%20testCall%28%29%3B%0A%7D%0A%0Afunction%20testCall%28%29%20%7B%0A%09var%20plId%20%3D%20data%5B0%5D.ID%3B%0A%09var%20sid%20%3D%20eventContext.DWApi.grid.sid%3B%0A%09eventContext.instance.awsuiaxios.post%28%7B%0A%09%09%09url%3A%20%22./jd%22%2C%0A%09%09%09data%3A%20%7B%0A%09%09%09%09cmd%3A%20%22com.awspaas.user.apps.app.controller.updatePalFileState%22%2C%0A%09%09%09%09sid%3A%20sid%2C%0A%09%09%09%09plId%3A%20plId%2C%0A%09%09%09%09state%3A%20%220%22%2C%0A%09%09%09%09type%3A%20%221%22%0A%09%09%09%09//%20bindId%3A%20%20eventContext.row._BINDID%2C%0A%09%09%09%09//APPLYNO%3A%20JSON.stringify%28result%29%0A%09%09%09%09//title%20%3A%20eventContext.row.FILENAME%0A%09%09%09%7D%0A%09%09%7D%29%0A%09%09.then%28function%28response%29%20%7B%0A%09%09%09if%20%28response.result%20%21%3D%20%22error%22%29%20%7B%0A%09%09%09%09if%20%28response.result%20%3D%3D%20%22ok%22%29%20%7B%0A%09%09%09%09%09eventContext.instance.%24message%28%7B%0A%09%09%09%09%09%09type%3A%20%22success%22%2C%0A%09%09%09%09%09%09message%3A%20%22%u6587%u4EF6%u5DF2%u6539%u4E3A%u8BBE%u8BA1%u72B6%u6001%uFF01%22%0A%09%09%09%09%09%7D%29%3B%0A%09%09%09%09%7D%20else%20%7B%0A%09%09%09%09%09eventContext.instance.%24message%28%7B%0A%09%09%09%09%09%09type%3A%20%22warning%22%2C%0A%09%09%09%09%09%09message%3A%20response.result%0A%09%09%09%09%09%7D%29%3B%0A%0A%09%09%09%09%7D%0A%09%09%09%7D%0A%0A%09%09%7D%29%0A%09%09.catch%28function%28response%29%20%7B%0A%09%09%09console.log%28response%29%3B%0A%09%09%7D%29%3B%0A%0A%7D%0A%0A%0A%0A%0A%0A</eventscript>
<beforeeventcall></beforeeventcall>
<beforeeventscript></beforeeventscript>
<aftereventcall></aftereventcall>
<aftereventscript></aftereventscript>
</userextendbutton>
<userextendbutton id="obj_1a3ca2ee7799444c8eb40c63f2db4310" icon="" label="改为发布态" tip="">
<eventcall></eventcall>
<eventscript>var%20data%20%3D%20eventContext.DWApi.grid.getCheckedData%28%29%3B%0Aif%28data%5B0%5D%3D%3Dnull%7C%7Cdata.length%3E1%29%7B%0A%20%20eventContext.instance.%24message%28%7B%0A%20%20type%3A%22error%22%2C%0A%20%20message%3A%22%u8BF7%u9009%u62E9%u5355%u6761%u6570%u636E%uFF01%22%0A%7D%29%3B%0A%7Delse%7B%0A%20testCall%28%29%3B%0A%7D%0A%0Afunction%20testCall%28%29%20%7B%0A%09var%20plId%20%3D%20data%5B0%5D.ID%3B%0A%09var%20sid%20%3D%20eventContext.DWApi.grid.sid%3B%0A%09eventContext.instance.awsuiaxios.post%28%7B%0A%09%09%09url%3A%20%22./jd%22%2C%0A%09%09%09data%3A%20%7B%0A%09%09%09%09cmd%3A%20%22com.awspaas.user.apps.app.controller.updatePalFileState%22%2C%0A%09%09%09%09sid%3A%20sid%2C%0A%09%09%09%09plId%3A%20plId%2C%0A%09%09%09%09state%3A%20%221%22%2C%0A%09%09%09%09type%3A%20%221%22%0A%09%09%09%09//%20bindId%3A%20%20eventContext.row._BINDID%2C%0A%09%09%09%09//APPLYNO%3A%20JSON.stringify%28result%29%0A%09%09%09%09//title%20%3A%20eventContext.row.FILENAME%0A%09%09%09%7D%0A%09%09%7D%29%0A%09%09.then%28function%28response%29%20%7B%0A%09%09%09if%20%28response.result%20%21%3D%20%22error%22%29%20%7B%0A%09%09%09%09if%20%28response.result%20%3D%3D%20%22ok%22%29%20%7B%0A%09%09%09%09%09eventContext.instance.%24message%28%7B%0A%09%09%09%09%09%09type%3A%20%22success%22%2C%0A%09%09%09%09%09%09message%3A%20%22%u6587%u4EF6%u5DF2%u6539%u4E3A%u53D1%u5E03%u72B6%u6001%uFF01%22%0A%09%09%09%09%09%7D%29%3B%0A%09%09%09%09%7D%20else%20%7B%0A%09%09%09%09%09eventContext.instance.%24message%28%7B%0A%09%09%09%09%09%09type%3A%20%22warning%22%2C%0A%09%09%09%09%09%09message%3A%20response.result%0A%09%09%09%09%09%7D%29%3B%0A%0A%09%09%09%09%7D%0A%09%09%09%7D%0A%0A%09%09%7D%29%0A%09%09.catch%28function%28response%29%20%7B%0A%09%09%09console.log%28response%29%3B%0A%09%09%7D%29%3B%0A%0A%7D%0A%0A%0A%0A%0A%0A</eventscript>
<beforeeventcall></beforeeventcall>
<beforeeventscript></beforeeventscript>
<aftereventcall></aftereventcall>
<aftereventscript></aftereventscript>
</userextendbutton>
<userextendbutton id="obj_01673e8348c748f9bb61d274cbc4cd79" icon="" label="审批改为设计" tip="">
<eventcall></eventcall>
<eventscript>var%20data%20%3D%20eventContext.DWApi.grid.getCheckedData%28%29%3B%0Aif%28data%5B0%5D%3D%3Dnull%7C%7Cdata.length%3E1%29%7B%0A%20%20eventContext.instance.%24message%28%7B%0A%20%20type%3A%22error%22%2C%0A%20%20message%3A%22%u8BF7%u9009%u62E9%u5355%u6761%u6570%u636E%uFF01%22%0A%7D%29%3B%0A%7Delse%7B%0A%20testCall%28%29%3B%0A%7D%0A%0Afunction%20testCall%28%29%20%7B%0A%09var%20plId%20%3D%20data%5B0%5D.ID%3B%0A%09var%20sid%20%3D%20eventContext.DWApi.grid.sid%3B%0A%09eventContext.instance.awsuiaxios.post%28%7B%0A%09%09%09url%3A%20%22./jd%22%2C%0A%09%09%09data%3A%20%7B%0A%09%09%09%09cmd%3A%20%22com.awspaas.user.apps.app.controller.updatePalFileState%22%2C%0A%09%09%09%09sid%3A%20sid%2C%0A%09%09%09%09plId%3A%20plId%2C%0A%09%09%09%09state%3A%20%220%22%2C%0A%09%09%09%09type%3A%20%222%22%0A%09%09%09%09//%20bindId%3A%20%20eventContext.row._BINDID%2C%0A%09%09%09%09//APPLYNO%3A%20JSON.stringify%28result%29%0A%09%09%09%09//title%20%3A%20eventContext.row.FILENAME%0A%09%09%09%7D%0A%09%09%7D%29%0A%09%09.then%28function%28response%29%20%7B%0A%09%09%09if%20%28response.result%20%21%3D%20%22error%22%29%20%7B%0A%09%09%09%09if%20%28response.result%20%3D%3D%20%22ok%22%29%20%7B%0A%09%09%09%09%09eventContext.instance.%24message%28%7B%0A%09%09%09%09%09%09type%3A%20%22success%22%2C%0A%09%09%09%09%09%09message%3A%20%22%u6587%u4EF6%u5DF2%u6539%u4E3A%u8BBE%u8BA1%u72B6%u6001%uFF01%22%0A%09%09%09%09%09%7D%29%3B%0A%09%09%09%09%7D%20else%20%7B%0A%09%09%09%09%09eventContext.instance.%24message%28%7B%0A%09%09%09%09%09%09type%3A%20%22warning%22%2C%0A%09%09%09%09%09%09message%3A%20response.result%0A%09%09%09%09%09%7D%29%3B%0A%0A%09%09%09%09%7D%0A%09%09%09%7D%0A%0A%09%09%7D%29%0A%09%09.catch%28function%28response%29%20%7B%0A%09%09%09console.log%28response%29%3B%0A%09%09%7D%29%3B%0A%0A%7D%0A%0A%0A%0A%0A%0A</eventscript>
<beforeeventcall></beforeeventcall>
<beforeeventscript></beforeeventscript>
<aftereventcall></aftereventcall>
<aftereventscript></aftereventscript>
</userextendbutton>
<userextendbutton id="obj_3a98ad935c8744f48d2fb9e79c1cc85e" icon="" label="查看模型" tip="">
<eventcall></eventcall>
<eventscript>var%20data%20%3D%20eventContext.DWApi.grid.getCheckedData%28%29%3B%0Aconst%20sid%20%3D%20eventContext.DWApi.sid%3B%0Avar%20palId%20%3D%20data%5B0%5D.ID%3B%0Awindow.open%28%27https%3A//bpm.yili.com%3A8088/portal/r/w%3Fuuid%3D%27+palId+%27%26teamId%3D%26cmd%3Dcom.actionsoft.apps.coe.pal_pl_repository_designer%26sid%3D%27+sid%29</eventscript>
<beforeeventcall></beforeeventcall>
<beforeeventscript></beforeeventscript>
<aftereventcall></aftereventcall>
<aftereventscript></aftereventscript>
</userextendbutton>
<userextendbutton id="obj_5ab67f3e20304148926ded24cf1f91cb" icon="" label="设计改为审批" tip="">
<eventcall></eventcall>
<eventscript>var%20data%20%3D%20eventContext.DWApi.grid.getCheckedData%28%29%3B%0Aif%28data%5B0%5D%3D%3Dnull%7C%7Cdata.length%3E1%29%7B%0A%20%20eventContext.instance.%24message%28%7B%0A%20%20type%3A%22error%22%2C%0A%20%20message%3A%22%u8BF7%u9009%u62E9%u5355%u6761%u6570%u636E%uFF01%22%0A%7D%29%3B%0A%7Delse%7B%0A%20testCall%28%29%3B%0A%7D%0A%0Afunction%20testCall%28%29%20%7B%0A%09var%20plId%20%3D%20data%5B0%5D.ID%3B%0A%09var%20sid%20%3D%20eventContext.DWApi.grid.sid%3B%0A%09eventContext.instance.awsuiaxios.post%28%7B%0A%09%09%09url%3A%20%22./jd%22%2C%0A%09%09%09data%3A%20%7B%0A%09%09%09%09cmd%3A%20%22com.awspaas.user.apps.app.controller.updatePalFileState%22%2C%0A%09%09%09%09sid%3A%20sid%2C%0A%09%09%09%09plId%3A%20plId%2C%0A%09%09%09%09state%3A%20%221%22%2C%0A%09%09%09%09type%3A%20%222%22%0A%09%09%09%09//%20bindId%3A%20%20eventContext.row._BINDID%2C%0A%09%09%09%09//APPLYNO%3A%20JSON.stringify%28result%29%0A%09%09%09%09//title%20%3A%20eventContext.row.FILENAME%0A%09%09%09%7D%0A%09%09%7D%29%0A%09%09.then%28function%28response%29%20%7B%0A%09%09%09if%20%28response.result%20%21%3D%20%22error%22%29%20%7B%0A%09%09%09%09if%20%28response.result%20%3D%3D%20%22ok%22%29%20%7B%0A%09%09%09%09%09eventContext.instance.%24message%28%7B%0A%09%09%09%09%09%09type%3A%20%22success%22%2C%0A%09%09%09%09%09%09message%3A%20%22%u6587%u4EF6%u5DF2%u6539%u4E3A%u5BA1%u6279%u4E2D%uFF01%22%0A%09%09%09%09%09%7D%29%3B%0A%09%09%09%09%7D%20else%20%7B%0A%09%09%09%09%09eventContext.instance.%24message%28%7B%0A%09%09%09%09%09%09type%3A%20%22warning%22%2C%0A%09%09%09%09%09%09message%3A%20response.result%0A%09%09%09%09%09%7D%29%3B%0A%0A%09%09%09%09%7D%0A%09%09%09%7D%0A%0A%09%09%7D%29%0A%09%09.catch%28function%28response%29%20%7B%0A%09%09%09console.log%28response%29%3B%0A%09%09%7D%29%3B%0A%0A%7D%0A%0A%0A%0A%0A%0A</eventscript>
<beforeeventcall></beforeeventcall>
<beforeeventscript></beforeeventscript>
<aftereventcall></aftereventcall>
<aftereventscript></aftereventscript>
</userextendbutton>
</userextendbuttons>
<userextendbehaviors>
<userextendbehavior id="obj_bd52e5012341419f82151d1f54c9357c" name="打开模型">
<templatecall>onclick%3D</templatecall>
<templatescript>var%20data%20%3D%20eventContext.DWApi.grid.getCheckedData%28%29%3B%0Aconst%20sid%20%3D%20eventContext.DWApi.sid%3B%0Avar%20palId%20%3D%20data%5B0%5D.ID%3B%0Awindow.open%28%27https%3A//bpm.yili.com%3A8088/portal/r/w%3Fuuid%3D%27+palId+%27%26teamId%3D%26cmd%3Dcom.actionsoft.apps.coe.pal_pl_repository_designer%26sid%3D%27+sid%29</templatescript>
</userextendbehavior>
</userextendbehaviors>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_b6f7cd5e050c439f94499c995c041452</id>
<createUser>admin</createUser>
<createTime>2022-10-17 15:39:16</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-17 15:39:16</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr79PpHIrySQHKvqaUKd+xS1IFoHaW4RcDRlnxoqtNoGUxJ98BXGhN/vI73WjTVXVY</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_b6f7cd5e050c439f94499c995c041452</processGroupId>
<processGroupName></processGroupName>
<categoryName>手册日志</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_e449f63572604226b9583bf4f1cfdd36" label="报告生成器失败记录清理" extendcode="" event=""/>
<dataView id="obj_b3fcaed22898430a9c760e7d35059eab" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_e321f743287248e3a37102556494aad9" isshow="true" extendcode="" event="">
<button id="obj_616dedd184d9423a97e4ee47f2c793c7" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_e9e862ff72d0440a85d2ce421039c100" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="2" mobileShow="false" event="" selectShow="false"/>
<button id="obj_71f26a1607f047e59d3b061a92558f43" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="3" mobileShow="false" event="" selectShow="true"/>
<button id="obj_a6369e483a9349d9babe1268656b15e3" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_8d48c081279e41c881209efc3dd06b0b" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_d2e5c8d0c817493c9a36605a16df04c3" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="6" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_9c4acc20972e4b59ac1260e5fe40a8cb" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_c47accc612ad4a0fbc7337108d181695" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_adbc10867f0243eaa81cba211a778a2e" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_36930055e4b24182b6bb4d8758cc0e7e" isshow="true" autoSearch="true" customSet="true" select="false" datasource="" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_bcf258f78f8542288fb55681d6237f26</id>
<createUser>admin</createUser>
<createTime>2022-10-09 08:59:28</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-09 09:00:12</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrlci0NHQJ6EqOtI1Q4wd4GWtz7SVDwld39mgMdhnjXGKr9hsMrRjX/GyyBaDEgW29</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_bcf258f78f8542288fb55681d6237f26</processGroupId>
<processGroupName></processGroupName>
<categoryName>权限处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_a648b317027a4f219529a079067f2f6e" label="空模型统计" extendcode="" event=""/>
<dataView id="obj_b18f9576cb1747fe8a7b5ed481ada48a" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_ce61330304d04abf9c6268959091d455" isshow="true" extendcode="" event="">
<button id="obj_a37387b242df43bfb46eedb603e66afe" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_62ad382573d749b5aec3b118a4530ecf" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="2" mobileShow="false" event="" selectShow="false"/>
<button id="obj_1a9c3d130d5d410e9c22a53507c6e3e9" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="3" mobileShow="false" event="" selectShow="true"/>
<button id="obj_3dc29cf20aac4b64b7eb92bf44916ff8" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_a26a23c04b2c4630aae8beb4b905bad7" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_a74fbe57b30d4822bce16d9ab4a24802" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="6" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_e6dc4ae5923e43698e1f7ca4e7206739" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false">
<likecondition id="obj_dcb4a4725e1147608251c5818f899726" field="PLNAME" extend1="" label="模型名称" comparetype="=" uiname="TEXT" relationship="" uidefault="" uicomponent="文本" uiref="" required="false" security="" orderindex="0" event=""/>
</searcher>
<navTree id="obj_9c75e6f972e049edb413278e74e710e6" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_9ea66a465976409fa4feb5dc693c91e6" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_a8ceb79b988c47a0a2b28ae88fd406e9" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU__PAL_NULL_L" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="f733a217-5bb1-48c9-afc4-3e0b4f93abc3" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLNAME" label="模型名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="6301d98d-3fb7-4b4e-ad4e-06334b1249a4" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="FRAMEWORK" label="架构名称" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="aad0bf79-cb45-435a-99a2-123e054d1399" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="VERSION" label="版本号" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="195b17eb-aad2-4bf6-aae3-ce7590d71e74" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="TYPE" label="模型类型" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="7850494b-221b-42ec-b0df-182adbcc35e2" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ISPUBLISH" label="是否发布" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="eb696bf8-3554-4b36-96fe-51d4f1e292f8" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="6b43a7f6-4f55-4cec-8e20-a7145a8767fc" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="20a50c50-838f-4ea7-b5c4-cee8ba6463a6" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="a765f1a4-f65a-4b27-b1a2-294cf3a0d877" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="b25390dd-fdb2-43f7-872d-0204fa842a29" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="ca21cfce-7a86-4202-a96d-483cdd7fc976" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="3f964734-8a14-4d7b-9780-a0e7c8126868" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="c6df17e7-b98e-4b0f-abc9-b82da22545b8" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU__PAL_NULL_L" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="12" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_bfd25e4ac3cc4692b9a6c307a819f096</id>
<createUser>admin</createUser>
<createTime>2022-11-10 21:39:59</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-10 22:03:21</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGryY6ZsUSI304EVfhEMyz0IeZJLs6J2iK+owiUQQIhXlTOvhxxt2CswSxXYnTZd651</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_bfd25e4ac3cc4692b9a6c307a819f096</processGroupId>
<processGroupName></processGroupName>
<categoryName>待办待阅</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_f2b19066e3f943619d79992aaea35203" label="用户登录日志_系统日志表" extendcode="" event=""/>
<dataView id="obj_2fa7f90c16614625ad827efc401fb35d" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_c22488060ac14d3ba17f61df31aebc27" isshow="true" extendcode="" event="">
<button id="obj_3c28e795eb494cb0916972a4b6685c71" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_12d3c0984f1a4c4a9921c20d1b855696" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_79399c5cc62c49e2aa9f6d13eac61196" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_d0deec820b934036826bb761055459cc" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_1f21a8423870467ba02ce0b2569b94eb" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_111d93f1bd254a9fa4cbd4aaacb6b0c5" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_73eebf36540049cd922d9f3674503689" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false">
<likecondition id="obj_ce927f0cbe134e8d8886d1a18b479d72" field="LOGTIME" extend1="" label="登录时间" comparetype="&gt;=" uiname="DATE" relationship="" uidefault="" uicomponent="日期" uiref="" required="false" security="" orderindex="0" event=""/>
<likecondition id="obj_995e476cdd7b4219a29a396d583c5ec8" field="LOGTIME" extend1="" label="登录时间" comparetype="&lt;=" uiname="DATE" relationship="" uidefault="" uicomponent="日期" uiref="" required="false" security="" orderindex="1" event=""/>
</searcher>
<navTree id="obj_3627d35a57f14103b1f71b3b66d783c8" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_2b8e93c4c3a54b5ca3d255d32eb06b52" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_1ab237d228144c5fb063635743693cd1" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_SYS_LOGIN_LOG" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="f8bd0860-cd0f-439f-af93-311a3768b5cc" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="137" colALias="" colTableAlias="" colTable="BO_EU_SYS_LOGIN_LOG" length="128" required="1" align="left" showrule="{&quot;type&quot;:&quot;org&quot;,&quot;orgtype&quot;:&quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="USERID" label="登录账号" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="51d99703-e009-4d07-bf9c-b993eae5847d" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_SYS_LOGIN_LOG" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="1" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="6632aeb4-477b-45d5-94e6-33f1ea8b3e97" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_SYS_LOGIN_LOG" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="2" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="d887e0db-0359-4249-b093-d54b57ed0d38" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_SYS_LOGIN_LOG" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="3" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="d3912f0f-cdd9-4069-bc85-79040e0a7b83" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_SYS_LOGIN_LOG" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="4" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="69d1647b-0d21-4743-a205-47c07091a988" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_SYS_LOGIN_LOG" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="8091ff88-6f62-496f-aa48-d7a7866f0cec" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_SYS_LOGIN_LOG" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="d534dffd-3119-49c8-8814-f9f8cfda3a4d" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_SYS_LOGIN_LOG" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="2065cb5b-1ceb-4ab3-9b7e-42e177c5551b" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_SYS_LOGIN_LOG" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="7f090b05-f769-4453-8144-4c5f537f66e3" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_SYS_LOGIN_LOG" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="USERBU" label="事业部名称" orderindex="9" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="4dd7df8e-03a9-4659-93ec-4e82c3d33f1f" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="197" colALias="" colTableAlias="" colTable="BO_EU_SYS_LOGIN_LOG" length="128" required="1" align="left" showrule="{&quot;type&quot;:&quot;org&quot;,&quot;orgtype&quot;:&quot;dept&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="USERDEP" label="部门名称" orderindex="10" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="d154d35e-5629-4440-a4f4-ee81e9887676" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="229" colALias="" colTableAlias="" colTable="BO_EU_SYS_LOGIN_LOG" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="USERPOST" label="岗位名称" orderindex="11" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="6fad2f4a-1c98-4135-bf8b-6500e06edeb8" sort="desc" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="318" colALias="" colTableAlias="" colTable="BO_EU_SYS_LOGIN_LOG" length="0" required="1" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="LOGTIME" label="登录时间" orderindex="12" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="0" boType="AWSUI.Date" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,70 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_c1d70cc462b6470a80afe0afd6b76b67</id>
<createUser>admin</createUser>
<createTime>2022-11-07 13:23:36</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-20 10:10:54</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrqbr0E0Yo6NdDG4OCsOjXyBwezNo9V/tvl6yOqJKR3vxkb9GleOGzde7EsusaB1F1</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_c1d70cc462b6470a80afe0afd6b76b67</processGroupId>
<processGroupName></processGroupName>
<categoryName>待办待阅</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_4c6f0ea2b6824d45b39b33d3d35d04f0" label="待阅执行回执视图" extendcode="" event=""/>
<dataView id="obj_fe1edda316b04844afc1291935c884dc" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_5de0ba77bd8f4b16a74b600835eef24e" isshow="true" extendcode="" event="">
<button id="obj_f67763e2b641425da64e7ccac7e38ddf" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_46d2a5b7714f417d82309ecb8c45ed90" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="2" mobileShow="false" event="" selectShow="false"/>
<button id="obj_1fc1309215be46b2b46ce110653550ce" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="3" mobileShow="false" event="" selectShow="true"/>
<button id="obj_0517bb4a097540a88634ac849387756b" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_6985c8f005f449c28bdaf150f640ae1f" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_c349ff4f347244b484f38be0e8d1cc38" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="6" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_8f4cf8096eef431a90be29852ef35cbb" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_85406f843a4044f8af8b1c6d972a6d70" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_8cae2b070bd74339b7f977bb22ee196b" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_63f46a4814df4ff6bb3590157dc54c1b" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_PULBISH_SUCCESS" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="4069d52c-513f-4db0-9031-4a6a685d10c7" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="244" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="500" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="TITLE" label="发布文件标题" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="1770c77c-8d78-4c4e-98f0-938a08faead5" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="104" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="36" required="1" align="left" showrule="{&quot;type&quot;:&quot;org&quot;,&quot;orgtype&quot;:&quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="USREID" label="发布人账号" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Address" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="a036fd35-1e00-4936-9cb1-adc2145a9530" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="DEPID" label="部门ID" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Address" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="50cae278-66c5-4542-ba63-c64d9ede1ae2" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="121" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="BUNAME" label="事业部名称" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="9e7df53b-d7f7-4769-8c63-61e48bf6b7f7" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="169" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="10" required="1" align="right" showrule="" upshowrule="{&quot;type&quot;:&quot;val&quot;,&quot;required&quot;:false,&quot;length&quot;:&quot;10&quot;,&quot;fmtnum&quot;:&quot;&quot;,&quot;cmconfig&quot;:{&quot;func&quot;:&quot;&quot;}}" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="SENDNUM" label="发送总人数" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="0" boType="AWSUI.Number" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="1874f17d-6686-4723-8c7f-f90af3845d8d" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="138" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="128" required="1" align="left" showrule="" upshowrule="{&quot;type&quot;:&quot;tx&quot;,&quot;required&quot;:false,&quot;length&quot;:&quot;128&quot;,&quot;cmconfig&quot;:{&quot;func&quot;:&quot;&quot;}}" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="SENDNUMSJ" label="实际发送人员总数" orderindex="5" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="3b78e386-8579-4f62-9c6b-4d1f3cca0185" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="132" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="10" required="1" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="READNUM" label="已读人数" orderindex="6" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="0" boType="AWSUI.Number" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="a0042d12-837b-489b-9b59-e917d3e38ffb" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="SEND_SCOP" label="是否发送全公司" orderindex="7" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.ComboBox" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="6b59da0b-93ba-44c0-9b4d-ccf319aee961" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PROCESSID" label="发布流程实例Id" orderindex="8" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="a2c31f63-247c-4cd4-b462-6f04f89cf5e2" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="80" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="10" required="1" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="SEND_SCOPE_ORGNUM" label="发送组织数量" orderindex="9" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="0" boType="AWSUI.Number" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="91a6e72c-9357-445a-9017-2da1d4be46cf" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="80" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="10" required="1" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="SEND_SCOPE_POST_NUM" label="发送岗位数量" orderindex="10" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="0" boType="AWSUI.Number" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="12a5e0a5-f901-4c65-bfcd-e786b782f6c8" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="80" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="10" required="1" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="SEND_SCOPE_LEVEL_NUM" label="发送职级数量" orderindex="11" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="0" boType="AWSUI.Number" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="50fbd99a-f8d1-4554-ba76-e73915018f06" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="TIMECOUNT" label="总共用时" orderindex="12" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="71cfb040-a423-4511-b518-6bfa9ffec577" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="90" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="0" required="1" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="STARTTIMES" label="开始时间" orderindex="13" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="0" boType="AWSUI.DateTime" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="2213fddc-8d07-4d26-99b0-284dbb2ccc72" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="90" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="0" required="1" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ENDTIMES" label="结束时间" orderindex="14" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="0" boType="AWSUI.DateTime" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="d2f30cc7-6769-4644-bfb8-99f19e50a98a" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="15" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="820093c4-41c9-41c7-bb66-b1910d9f4926" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="16" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="89185eee-9cdc-412f-9c89-9a14f127d992" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="17" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="eee46596-344c-473e-b9d3-95897d8058c7" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="18" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="af7d0680-6331-43ac-8415-43f60afff561" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="19" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="599dd88d-2422-4454-9681-50526b602e36" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="20" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="e81f4c17-6135-4846-87c5-932b85ee02dc" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="21" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="0999ee77-86b5-4c26-9fef-efd6f6a2f1c0" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_PULBISH_SUCCESS" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="22" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_cd515d3dfd2b428481a2d407cf76a52a</id>
<createUser>admin</createUser>
<createTime>2022-11-08 19:05:01</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-08 19:06:44</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr+cRAnETB/JJSa1L2/pGVbm3PrASBcrSUYQ/xOWB4VOtSt7Qg9qNcWA+jJjhGNVgh</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_cd515d3dfd2b428481a2d407cf76a52a</processGroupId>
<processGroupName></processGroupName>
<categoryName>待办待阅</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_317cf229cbd048b48341624ce1413548" label="测试视图" extendcode="" event=""/>
<dataView id="obj_e5087af2a736437a895503589139a182" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_3cd7a6d69eae4f26b7578b95d677845f" isshow="true" extendcode="" event="">
<button id="obj_ad8c7b7da56045cb86be09f1d60f4746" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_0df5f283fafe4aa9a06ad322e856075f" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_276e11a374a34f4794224662ab527f91" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_44568ebd8471477ca3fe2dd1ddde14ef" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_e202d76dc5d84f8e858b50bc26474c15" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_f0d97a354e2a4af5988335b7f7816c0c" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="5" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_2a77b779bd1a48528393f60a728133eb" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_776c1e01f5b945339cdbab1b4fa9d3fa" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_cc1ce39f65ca4868ab8ad92dd34d5336" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_f52ec9e5e1ee47f79fa7523cce1d78b9" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_TEST_01" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="5e0a98d0-838f-46b0-9ea7-b314e9b906ab" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_TEST_01" length="128" required="1" align="left" showrule="" upshowrule="{&quot;type&quot;:&quot;tx&quot;,&quot;required&quot;:false,&quot;length&quot;:&quot;128&quot;,&quot;cmconfig&quot;:{&quot;func&quot;:&quot;&quot;}}" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="TEST1" label="测试字段1" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="12a6da3f-b35e-4a8b-8512-7ba0024bb584" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_TEST_01" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="TEST2" label="测试字段2" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="aef9528a-c192-44f3-ab85-1b17f9d1ea48" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_TEST_01" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="TEST3" label="测试字段3" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="b9c52509-80aa-4760-aee9-34d0f4e132b6" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_TEST_01" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="TEST4" label="测试字段4" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="b034e18c-5822-4029-aa07-7c8a7c8862e8" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_TEST_01" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="4" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="46b63fa2-595d-4c28-b2d0-75ce18cce6c0" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_TEST_01" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="59e8961c-b9be-4dda-9ea9-4a755e6a8312" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_TEST_01" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="fe9a4842-69cc-4aea-980b-add13b0bf0ef" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_TEST_01" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="c3af544b-8ce8-4be8-9086-42f2dafd98ff" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_TEST_01" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="806d2578-bb83-4f3d-8dfd-cd6a7188963c" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_TEST_01" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="0a8ea36c-0556-417b-950f-53358a158995" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_TEST_01" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="0730b965-88f1-4328-8bbd-62ade178cfc9" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_TEST_01" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_cd6277fbcf8f424bb81a54962ec2a019</id>
<createUser>admin</createUser>
<createTime>2022-11-10 21:05:19</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-10 21:07:31</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrQK+2WLE5/vRt6ztRrZGmOf3PAfkrKmUyupGhLKtQh/7jbPWJeFCMb4DtKDntAiOq</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_cd6277fbcf8f424bb81a54962ec2a019</processGroupId>
<processGroupName></processGroupName>
<categoryName>手册日志</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_d966696c34a04687aeabf95051d85ebd" label="用户登录系统日志" extendcode="" event=""/>
<dataView id="obj_1cfd0f98243941448145f5e9c870c962" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_3ddd240c9c444c4ea18437623d589270" isshow="true" extendcode="" event="">
<button id="obj_f0474baadadc445891d0101cfe4c4b2c" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_94b97557742744eda2249c4853d89eac" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="2" mobileShow="false" event="" selectShow="false"/>
<button id="obj_a3ea2b1411b842819b3448961da0159c" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="3" mobileShow="false" event="" selectShow="true"/>
<button id="obj_4a310f2f68a0449fbf3bcfed24e3aee6" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_7b52c7586bb34afe880de2bc97ad5331" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_e95bc3873c2341a99441b34b46a60447" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="6" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_3f6ec2bf2b95417f9e3da1b9ac725c81" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_08ea3f890df5455997efd7d73263c9c1" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_d7652e42d6554ff090d0676757d71dc8" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_06732899ddaf4bf58eb3df230a4438a1" isshow="true" autoSearch="true" customSet="true" select="false" datasource="sql:select * from sys_session" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="SESSIONID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="4ffdb037-367a-4f19-8b85-bf6549dafffa" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="174" colALias="" colTableAlias="" colTable="SYS_SESSION" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="SESSIONID" label="SESSIONID" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="b07b828c-571c-4f99-aae1-6a7a6cdf3808" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="80" colALias="" colTableAlias="" colTable="SYS_SESSION" length="2" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ISSDK" label="ISSDK" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="61ef6f6b-a9e1-46c5-9abe-3402831b5a1b" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="110" colALias="" colTableAlias="" colTable="SYS_SESSION" length="36" required="0" align="left" showrule="{&quot;type&quot;:&quot;org&quot;,&quot;orgtype&quot;:&quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="USERID" label="USERID" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="b362de33-2b84-498b-a76d-d921789e1e14" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="SYS_SESSION" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="IP" label="IP" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="222676c7-e1ba-4cd2-8ab7-69c73d5cd622" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="143" colALias="" colTableAlias="" colTable="SYS_SESSION" length="17" required="0" align="right" showrule="{&quot;dfconfig&quot;:{&quot;typesOf&quot;:&quot;date&quot;,&quot;currencyType&quot;:&quot;&quot;,&quot;decimalPlacesSwitch&quot;:false,&quot;decimalPlaces&quot;:0,&quot;numberSectionSwitch&quot;:false,&quot;sectionType&quot;:&quot;international&quot;,&quot;nullValueHandling&quot;:&quot;&quot;,&quot;prefixVal&quot;:&quot;&quot;,&quot;suffixVal&quot;:&quot;&quot;,&quot;currentFormat&quot;:&quot;yyyy年MM月dd日HH时mm分ss秒&quot;,&quot;targetFormat&quot;:&quot;yyyy年MM月dd日HH时mm分ss秒&quot;,&quot;unitConversionSwitch&quot;:false,&quot;convertType&quot;:&quot;&quot;,&quot;conversionExpression&quot;:&quot;&quot;,&quot;currentUnitVal&quot;:&quot;&quot;,&quot;targetUnitVal&quot;:&quot;&quot;}}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="STARTTIME" label="STARTTIME" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="d787067c-a197-42f2-8320-df502e209a7b" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="185" colALias="" colTableAlias="" colTable="SYS_SESSION" length="17" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="REFRESHTIME" label="REFRESHTIME" orderindex="5" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="1c2088f0-e3a9-465d-8c0c-fa6fc98c4c56" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="80" colALias="" colTableAlias="" colTable="SYS_SESSION" length="17" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="CLOSETIME" label="CLOSETIME" orderindex="6" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="2ec75f44-def8-4212-b17b-cea5e5fd86d7" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="70" colALias="" colTableAlias="" colTable="SYS_SESSION" length="16" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="DEVICETYPE" label="DEVICETYPE" orderindex="7" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="480749c6-d900-498f-b96e-b6ee45df589c" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="70" colALias="" colTableAlias="" colTable="SYS_SESSION" length="16" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="DEVICELANG" label="DEVICELANG" orderindex="8" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="ac50bc88-1f1a-48b0-82cb-66489e086293" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="60" colALias="" colTableAlias="" colTable="SYS_SESSION" length="1" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="SESSIONSCOPE" label="SESSIONSCOPE" orderindex="9" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="5bf03fed-487e-4205-9aae-5d6e352e25c8" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="SYS_SESSION" length="90" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="INSTNAME" label="INSTNAME" orderindex="10" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="7ea36681-19ec-4cf8-b08e-60ca141542dd" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="80" colALias="" colTableAlias="" colTable="SYS_SESSION" length="2" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="CLOSED" label="CLOSED" orderindex="11" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="28e8a043-3d0a-4b29-8e9b-56d9eb7f9412" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="60" colALias="" colTableAlias="" colTable="SYS_SESSION" length="10" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="SESSIONTIMEZONE" label="SESSIONTIMEZONE" orderindex="12" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_d0de1ebf1b5a4b8fac0c0ec357123518</id>
<createUser>admin</createUser>
<createTime>2022-11-11 18:21:33</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-23 21:29:34</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr84oXoY8hihuTot2R1HE+db2sGgWkVS6vMsKFiUCL5N82dqsSLpu2YaOpnPySR4tS</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_d0de1ebf1b5a4b8fac0c0ec357123518</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_b0e370b9973d4663993bcd9c3d647fb2" label="批量刷新编号" extendcode="" event=""/>
<dataView id="obj_a89ac0d10c524ad98ae9038bb4085b30" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_2134370ad57f46beab18b57a1831ad6b" isshow="true" extendcode="" event="">
<button id="obj_1fb14ace2688421f92c568cb6ac8baa6" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_3c25aa50173e4f8e9029e103c70801c8" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_5cfb8f97526b4b62b08cb6e22b3a3686" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_7873742de2b4488d9ff604b725ad0281" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_e3e1479ca0cf488da47679f2803fa73d" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_31c3027655104dfbbbbe7df8cfb3285d" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_d67f6d31a11e466b9a44337ee80fe8c6" refbuttonid="importDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="6" config="[{&quot;btnName&quot;:&quot;&quot;,&quot;formDefId&quot;:&quot;obj_f63aae71b87444ca87a4c3d64362faac|559d4233-cce0-41e7-bc6f-773407d570e8&quot;,&quot;formName&quot;:&quot;批量刷新编号&quot;,&quot;formExcelShowName&quot;:&quot;批量刷新编号&quot;,&quot;maxRow&quot;:&quot;20000&quot;,&quot;javaEvents&quot;:[],&quot;enableAddImport&quot;:true,&quot;enableupdateimport&quot;:false,&quot;requiredImport&quot;:false,&quot;importStrategy&quot;:{&quot;addImport&quot;:{&quot;strategybase&quot;:&quot;onlyimportdata&quot;,&quot;boModels&quot;:[{&quot;boDefName&quot;:&quot;BO_EU_PAL_NOREFR&quot;,&quot;boItems&quot;:[{&quot;name&quot;:&quot;PLNAME&quot;,&quot;title&quot;:&quot;模型名称&quot;},{&quot;name&quot;:&quot;PLID&quot;,&quot;title&quot;:&quot;模型ID&quot;}]}]}}}]" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_99078a0359c448618933c22ebf99edb0" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false">
<likecondition id="obj_a9f3c33b57c34d06976296bcfd57c37f" field="PLNAME" extend1="" label="模型名称" comparetype="=" uiname="TEXT" relationship="" uidefault="" uicomponent="文本" uiref="" required="false" security="" orderindex="0" event=""/>
</searcher>
<navTree id="obj_a58d1f7bb14b4479ba10d4b51c53dc9a" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_b09a231a67814d5193e0971acc0cb83c" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_ae78777340a04396879c6aa982956e5e" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_NOREFR" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="obj_b6f11a963aff48bfb34e1e8f91588682" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFR" length="128" required="0" align="left" showrule="" upshowrule="{&quot;type&quot;:&quot;tx&quot;,&quot;required&quot;:false,&quot;length&quot;:&quot;128&quot;,&quot;cmconfig&quot;:{&quot;func&quot;:&quot;&quot;}}" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLNAME" label="模型名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ef1c2e7fa86e4a659f552fa52f08c30d" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="236" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFR" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLID" label="模型ID" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_a38a4712afc7495d9ca0c869dd8b8228" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFR" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="2" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_e107b58c6c1a47adb6237242fa91f2b7" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFR" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="3" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ccb68d81602e4423bc9c29038c382f71" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFR" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="4" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_91e0d29fd474426abc94c6750c15d5ce" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFR" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_a373a0aa31f8420cb68a9a55ad3d0dc2" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFR" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_5640ee4052714f0a8d70d91248a9a409" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFR" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_c3b4e37d06cd40a2ad5eb3dfaf4c0049" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFR" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_334cbd415af64035a7dcc27e9d4f7913" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFR" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_d0de1ebf1b5a4b8fac0c0ec357123518</id>
<createUser>admin</createUser>
<createTime>2022-11-11 18:21:33</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-21 23:40:25</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr84oXoY8hihuTot2R1HE+db2sGgWkVS6vMsKFiUCL5N82dqsSLpu2YaOpnPySR4tS</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_d0de1ebf1b5a4b8fac0c0ec357123518</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_b0e370b9973d4663993bcd9c3d647fb2" label="批量刷新编号" extendcode="" event=""/>
<dataView id="obj_a89ac0d10c524ad98ae9038bb4085b30" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_2134370ad57f46beab18b57a1831ad6b" isshow="true" extendcode="" event="">
<button id="obj_1fb14ace2688421f92c568cb6ac8baa6" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_3c25aa50173e4f8e9029e103c70801c8" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_5cfb8f97526b4b62b08cb6e22b3a3686" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_7873742de2b4488d9ff604b725ad0281" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_e3e1479ca0cf488da47679f2803fa73d" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_31c3027655104dfbbbbe7df8cfb3285d" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_d67f6d31a11e466b9a44337ee80fe8c6" refbuttonid="importDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="6" config="[{&quot;btnName&quot;:&quot;&quot;,&quot;formDefId&quot;:&quot;obj_f63aae71b87444ca87a4c3d64362faac|559d4233-cce0-41e7-bc6f-773407d570e8&quot;,&quot;formName&quot;:&quot;批量刷新编号&quot;,&quot;formExcelShowName&quot;:&quot;批量刷新编号&quot;,&quot;maxRow&quot;:&quot;20000&quot;,&quot;javaEvents&quot;:[],&quot;enableAddImport&quot;:true,&quot;enableupdateimport&quot;:false,&quot;requiredImport&quot;:false,&quot;importStrategy&quot;:{&quot;addImport&quot;:{&quot;strategybase&quot;:&quot;onlyimportdata&quot;,&quot;boModels&quot;:[{&quot;boDefName&quot;:&quot;BO_EU_PAL_NOREFR&quot;,&quot;boItems&quot;:[{&quot;name&quot;:&quot;PLNAME&quot;,&quot;title&quot;:&quot;模型名称&quot;},{&quot;name&quot;:&quot;PLID&quot;,&quot;title&quot;:&quot;模型ID&quot;}]}]}}}]" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_99078a0359c448618933c22ebf99edb0" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false">
<likecondition id="obj_a9f3c33b57c34d06976296bcfd57c37f" field="PLNAME" extend1="" label="模型名称" comparetype="=" uiname="TEXT" relationship="" uidefault="" uicomponent="文本" uiref="" required="false" security="" orderindex="0" event=""/>
</searcher>
<navTree id="obj_a58d1f7bb14b4479ba10d4b51c53dc9a" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_b09a231a67814d5193e0971acc0cb83c" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_ae78777340a04396879c6aa982956e5e" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_NOREFR" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="obj_b6f11a963aff48bfb34e1e8f91588682" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFR" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLNAME" label="模型名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ef1c2e7fa86e4a659f552fa52f08c30d" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="236" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFR" length="128" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLID" label="模型ID" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_a38a4712afc7495d9ca0c869dd8b8228" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFR" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="2" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_e107b58c6c1a47adb6237242fa91f2b7" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFR" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="3" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_ccb68d81602e4423bc9c29038c382f71" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFR" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="4" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_91e0d29fd474426abc94c6750c15d5ce" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFR" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="5" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_a373a0aa31f8420cb68a9a55ad3d0dc2" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFR" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="6" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_5640ee4052714f0a8d70d91248a9a409" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFR" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_c3b4e37d06cd40a2ad5eb3dfaf4c0049" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFR" length="36" required="0" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="obj_334cbd415af64035a7dcc27e9d4f7913" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_NOREFR" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_df7827e0f8b64318a8a3d70c4db61df6</id>
<createUser>admin</createUser>
<createTime>2022-11-04 16:33:13</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-04 16:33:13</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGraqisLuSOwJQsgjRz78WGWYt4femP3DFPeAGRosN5O9ovXF8O8zZrEBA3WUoZO4fH</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_df7827e0f8b64318a8a3d70c4db61df6</processGroupId>
<processGroupName></processGroupName>
<categoryName>权限处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_e6e6dbb035584f88bfd3b6779250e7a3" label="权限测试" extendcode="" event=""/>
<dataView id="obj_652d3cef7cf7481e8a9289a69beafc56" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_32ad4d69402942c7aef01e9a92cee434" isshow="true" extendcode="" event="">
<button id="obj_91a2b880bd284c85a652685af76ae1ce" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_2decd0727fd042819089d955837d6328" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="2" mobileShow="false" event="" selectShow="false"/>
<button id="obj_37f30a8205e4482088c6ded4e918e7f6" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="3" mobileShow="false" event="" selectShow="true"/>
<button id="obj_75a1a4ee95404ee9ab92dc97bd9c898b" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_fc0bf2c2a68f4186a230ac41086e1ac2" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_f817c9fd298445d98d16603c62e58cf3" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="6" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_fc8b779c50d34b98b5e1585f432e3988" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false"/>
<navTree id="obj_8af11c9643264ed88d6e74b4f082da77" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_fb732f66335b41f6a641703cf4208bfb" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_f3cb722db8d149aeb73c4181a149c6ec" isshow="true" autoSearch="true" customSet="true" select="false" datasource="" countSql="" pagesize="15" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,119 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_e823232d22454476a29dd282504fa8c9</id>
<createUser>admin</createUser>
<createTime>2022-10-10 23:46:03</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-03 10:03:29</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrszCychtf8Iu5m5n4/mutu2BMnen5zl7NSGVd50kEdNmX0T2ZB6xBW9Wa05MIeber</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_e823232d22454476a29dd282504fa8c9</processGroupId>
<processGroupName></processGroupName>
<categoryName>手册日志</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_f746c31f38f04aae95e2c98f03c02061" label="手册预览加载日志" extendcode="" event=""/>
<dataView id="obj_44bc5ab41b304b3c9923480ca8a82b90" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_08ce90fc3af24456a627256b4caf66a6" isshow="true" extendcode="" event="">
<button id="obj_ef974b7fd6ba4efd8f7b301991abe4f5" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="0" mobileShow="false" event="" selectShow="false"/>
<button id="obj_cc44be8274204563b676cb2edcf32711" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_93a9bfd43d494e9b86aa640a0b5bf3ba" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="2" mobileShow="false" event="" selectShow="true"/>
<button id="obj_359f3eccdd674ddca4d79e71f07979fd" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="3" mobileShow="false" event="" selectShow="false"/>
<button id="obj_85643b996fc34e63862bad1670f9f022" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_58aaa0e01de34c7cafc8a060c04a86d2" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_a27f8a0ae5044a2296f2e6d0c4c6f069" refbuttonid="obj_9c6cfa7b9be041d08e334e32756daeae" cls="" fontColor="" bgColor="#dae5f0" security="" isshow="true" orderindex="6" mobileShow="false" event="" selectShow="false"/>
<button id="obj_a1f405a3bb144889a4562f38680fdaa6" refbuttonid="obj_39f7d52151b44c288fed5ec780c487d3" cls="" fontColor="" bgColor="#eaf1de" security="" isshow="true" orderindex="7" mobileShow="false" event="" selectShow="false"/>
<button id="obj_7e42b18ba69e473cb4ad6d93c99f827e" refbuttonid="obj_c34b4c5c91854a6b8962806b064fa544" cls="" fontColor="" bgColor="#fee9da" security="" isshow="true" orderindex="8" mobileShow="false" event="" selectShow="false"/>
<button id="obj_17c5000d81b14f77bfb22c86f08ff22d" refbuttonid="obj_906782368fa44c8d88ca194e9f008564" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="9" mobileShow="false" event="" selectShow="false"/>
<button id="obj_b4b414b156244a44a6d0a15bc30c6a56" refbuttonid="obj_48a5548fbeec43f69217849ef8941311" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="10" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_1721aeee6b97468091cff34c0f5c9631" isshow="true" layoutType="tile" tdGroup="4" tileLayout="x" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="true">
<likecondition id="obj_539f2652ebf244f8a2731ac10ea9a0e4" field="PLNAME" extend1="" label="模型名称" comparetype="like" uiname="TEXT" relationship="" uidefault="" uicomponent="文本" uiref="" required="false" security="" orderindex="0" event=""/>
<likecondition id="obj_8c7fd5a9f4a340eea4c907e54fded157" field="RESULT" extend1="" label="转换结果" comparetype="like" uiname="TEXT" relationship="OR" uidefault="" uicomponent="文本" uiref="" required="false" security="" orderindex="1" event=""/>
<likecondition id="obj_79589d524a9049ab88f62d21412dbb84" field="PLMETHODID" extend1="" label="模型类型" comparetype="!=" uiname="TEXT" relationship="" uidefault="" uicomponent="文本" uiref="" required="false" security="" orderindex="2" event=""/>
</searcher>
<navTree id="obj_525fed60641e430b8095b88b6fe73b57" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_366fd893c1624ce4b3867fbb6f24db75" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_eaabc935e27d4cc2a26e92a05c3448e7" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_OUTPUTREPORT" countSql="" pagesize="50" event="" rowDefHeight="25" showCheckBox="true" ismultiple="false" isshownumbercol="true" numberCellTotal="true" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="%7B%22behavior%22%3A%22%u6253%u5F00%u624B%u518C%22%2C%22behaviorMobile%22%3A%22%22%2C%22h%22%3A%22%22%2C%22hUnit%22%3A%22px%22%2C%22ih%22%3A%22%22%2C%22ihUnit%22%3A%22px%22%2C%22isMask%22%3A0%2C%22sw%22%3A%22%22%2C%22swUnit%22%3A%22px%22%2C%22target%22%3A%22%22%2C%22title%22%3A%22%22%2C%22wUnit%22%3A%22px%22%2C%22w%22%3A%22%22%7D" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="4783ab79-d577-406c-8124-539a6a4aad48" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="261" colALias="" colTableAlias="" colTable="BO_EU_PAL_OUTPUTREPORT" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLNAME" label="模型名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="obj_995d67ce1e2146e4a42b594e46ecb6d9" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="9bb6b171-b663-423e-bde1-b4232dd56083" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="175" colALias="" colTableAlias="" colTable="BO_EU_PAL_OUTPUTREPORT" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="FRNAME" label="架构名称" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="b2c92c0e-4ee4-41e3-b4d5-17e1c67aee07" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="103" colALias="" colTableAlias="" colTable="BO_EU_PAL_OUTPUTREPORT" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLVERSION" label="模型版本" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="28655e19-67b9-47ea-8e2c-bdc660deb666" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_OUTPUTREPORT" length="500" required="1" align="left" showrule="" upshowrule="{&quot;type&quot;:&quot;tx&quot;,&quot;required&quot;:false,&quot;length&quot;:&quot;500&quot;,&quot;cmconfig&quot;:{&quot;func&quot;:&quot;&quot;}}" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="REMARKS" label="备注" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="7e4a4938-3b63-40e7-86c5-be4807fe58a5" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="162" colALias="" colTableAlias="" colTable="BO_EU_PAL_OUTPUTREPORT" length="1000" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="FILEURL" label="预览链接" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="c0267f64-142c-4ed4-96a3-2911ba104629" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_OUTPUTREPORT" length="128" required="1" align="left" showrule="{&quot;type&quot;:&quot;NORMAL&quot;,&quot;cons&quot;:&quot;control.policy:制度模型|data.form:表单模型|process.epc:epc模型&quot;,&quot;showAdv&quot;:false}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLMETHODID" label="模型类型" orderindex="5" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="adb8c325-9a64-4890-920a-a4dbc1fafc0d" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="158" colALias="" colTableAlias="" colTable="BO_EU_PAL_OUTPUTREPORT" length="128" required="1" align="left" showrule="" upshowrule="{&quot;type&quot;:&quot;tx&quot;,&quot;required&quot;:false,&quot;length&quot;:&quot;128&quot;,&quot;cmconfig&quot;:{&quot;func&quot;:&quot;&quot;}}" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="RESULT" label="转换结果" orderindex="6" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="da398407-b763-4b93-bf64-761dfa0ccc87" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_OUTPUTREPORT" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="531efd50-d3e1-4d2c-84c5-52305ea92cf2" sort="desc" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_PAL_OUTPUTREPORT" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="8" colbehaviortarget="" ishidden="false" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="b766ddac-1c37-414a-8a32-732322b6ce98" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_PAL_OUTPUTREPORT" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="bf76a5c0-ab4b-4cb1-a942-fa145eb8c45f" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_OUTPUTREPORT" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="d4fb21b7-fcf8-4f9a-9c6f-042ee56e034b" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_OUTPUTREPORT" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="5ace7a5d-2261-40b3-8250-ed5966748e11" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_OUTPUTREPORT" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="12" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="ed93c50d-88ae-4d74-98dd-09324889f878" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_OUTPUTREPORT" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="13" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="4fed5187-4765-4858-b486-4103334c65c9" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_OUTPUTREPORT" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="14" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="b68a8d30-3ee0-42c5-9dd3-fd6e8d27524f" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_OUTPUTREPORT" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLID" label="模型Id" orderindex="15" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="7e027de4-bfeb-4a6f-9fd5-47f9146df3ae" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_OUTPUTREPORT" length="128" required="1" align="left" showrule="" upshowrule="{&quot;type&quot;:&quot;tx&quot;,&quot;required&quot;:false,&quot;length&quot;:&quot;128&quot;,&quot;cmconfig&quot;:{&quot;func&quot;:&quot;&quot;}}" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="TASKID" label="手册ID" orderindex="16" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons>
<userextendbutton id="obj_9c6cfa7b9be041d08e334e32756daeae" icon="" label="预览手册" tip="">
<eventcall></eventcall>
<eventscript>var%20data%20%3D%20eventContext.DWApi.grid.getCheckedData%28%29%3B%0Aconst%20sid%20%3D%20eventContext.DWApi.sid%3B%0Avar%20url%20%3D%20data%5B0%5D.FILEURL%3B%0Awindow.open%28%27https%3A//bpm.yili.com%3A8088/portal/r/w%3Fsid%3D%27+sid+url%29</eventscript>
<beforeeventcall></beforeeventcall>
<beforeeventscript></beforeeventscript>
<aftereventcall></aftereventcall>
<aftereventscript></aftereventscript>
</userextendbutton>
<userextendbutton id="obj_39f7d52151b44c288fed5ec780c487d3" icon="" label="模型阅览" tip="">
<eventcall></eventcall>
<eventscript>var%20data%20%3D%20eventContext.DWApi.grid.getCheckedData%28%29%3B%0Aconst%20sid%20%3D%20eventContext.DWApi.sid%3B%0Avar%20plId%20%3D%20data%5B0%5D.PLID%3B%0Avar%20taskId%20%3D%20data%5B0%5D.TASKID%3B%0Awindow.open%28%27https%3A//bpm.yili.com%3A8088/portal/r/w%3Fcmd%3Dcom.actionsoft.apps.coe.pal.publisher_publish_file_open%26uuid%3D%27+plId+%27%26sid%3D%27+sid+%27%26taskId%3D%27+taskId%29</eventscript>
<beforeeventcall></beforeeventcall>
<beforeeventscript></beforeeventscript>
<aftereventcall></aftereventcall>
<aftereventscript></aftereventscript>
</userextendbutton>
<userextendbutton id="obj_c34b4c5c91854a6b8962806b064fa544" icon="" label="查看模型" tip="">
<eventcall></eventcall>
<eventscript>var%20data%20%3D%20eventContext.DWApi.grid.getCheckedData%28%29%3B%0Aconst%20sid%20%3D%20eventContext.DWApi.sid%3B%0Avar%20paId%20%3D%20data%5B0%5D.PLID%3B%0Awindow.open%28%27https%3A//bpm.yili.com%3A8088/portal/r/w%3Fuuid%3D%27+paId+%27%26teamId%3D%26cmd%3Dcom.actionsoft.apps.coe.pal_pl_repository_designer%26sid%3D%27+sid%29</eventscript>
<beforeeventcall></beforeeventcall>
<beforeeventscript></beforeeventscript>
<aftereventcall></aftereventcall>
<aftereventscript></aftereventscript>
</userextendbutton>
<userextendbutton id="obj_906782368fa44c8d88ca194e9f008564" icon="" label="改为设计" tip="">
<eventcall></eventcall>
<eventscript>var%20data%20%3D%20eventContext.DWApi.grid.getCheckedData%28%29%3B%0Aif%28data%5B0%5D%3D%3Dnull%7C%7Cdata.length%3E1%29%7B%0A%20%20eventContext.instance.%24message%28%7B%0A%20%20type%3A%22error%22%2C%0A%20%20message%3A%22%u8BF7%u9009%u62E9%u5355%u6761%u6570%u636E%uFF01%22%0A%7D%29%3B%0A%7Delse%7B%0A%20testCall%28%29%3B%0A%7D%0A%0Afunction%20testCall%28%29%20%7B%0A%09var%20plId%20%3D%20data%5B0%5D.PLID%3B%0A%09var%20sid%20%3D%20eventContext.DWApi.grid.sid%3B%0A%09eventContext.instance.awsuiaxios.post%28%7B%0A%09%09%09url%3A%20%22./jd%22%2C%0A%09%09%09data%3A%20%7B%0A%09%09%09%09cmd%3A%20%22com.awspaas.user.apps.app.controller.updatePalFileState%22%2C%0A%09%09%09%09sid%3A%20sid%2C%0A%09%09%09%09plId%3A%20plId%2C%0A%09%09%09%09state%3A%20%220%22%2C%0A%09%09%09%09type%3A%20%220%22%0A%09%09%09%09//%20bindId%3A%20%20eventContext.row._BINDID%2C%0A%09%09%09%09//APPLYNO%3A%20JSON.stringify%28result%29%0A%09%09%09%09//title%20%3A%20eventContext.row.FILENAME%0A%09%09%09%7D%0A%09%09%7D%29%0A%09%09.then%28function%28response%29%20%7B%0A%09%09%09if%20%28response.result%20%21%3D%20%22error%22%29%20%7B%0A%09%09%09%09if%20%28response.result%20%3D%3D%20%22ok%22%29%20%7B%0A%09%09%09%09%09eventContext.instance.%24message%28%7B%0A%09%09%09%09%09%09type%3A%20%22success%22%2C%0A%09%09%09%09%09%09message%3A%20%22%u6587%u4EF6%u5DF2%u6539%u4E3A%u8BBE%u8BA1%u72B6%u6001%uFF01%22%0A%09%09%09%09%09%7D%29%3B%0A%09%09%09%09%7D%20else%20%7B%0A%09%09%09%09%09eventContext.instance.%24message%28%7B%0A%09%09%09%09%09%09type%3A%20%22warning%22%2C%0A%09%09%09%09%09%09message%3A%20response.result%0A%09%09%09%09%09%7D%29%3B%0A%0A%09%09%09%09%7D%0A%09%09%09%7D%0A%0A%09%09%7D%29%0A%09%09.catch%28function%28response%29%20%7B%0A%09%09%09console.log%28response%29%3B%0A%09%09%7D%29%3B%0A%0A%7D%0A%0A%0A%0A%0A%0A</eventscript>
<beforeeventcall></beforeeventcall>
<beforeeventscript></beforeeventscript>
<aftereventcall></aftereventcall>
<aftereventscript></aftereventscript>
</userextendbutton>
<userextendbutton id="obj_48a5548fbeec43f69217849ef8941311" icon="" label="改为发布" tip="">
<eventcall></eventcall>
<eventscript>var%20data%20%3D%20eventContext.DWApi.grid.getCheckedData%28%29%3B%0Aif%28data%5B0%5D%3D%3Dnull%7C%7Cdata.length%3E1%29%7B%0A%20%20eventContext.instance.%24message%28%7B%0A%20%20type%3A%22error%22%2C%0A%20%20message%3A%22%u8BF7%u9009%u62E9%u5355%u6761%u6570%u636E%uFF01%22%0A%7D%29%3B%0A%7Delse%7B%0A%20testCall%28%29%3B%0A%7D%0A%0Afunction%20testCall%28%29%20%7B%0A%09var%20plId%20%3D%20data%5B0%5D.ID%3B%0A%09var%20sid%20%3D%20eventContext.DWApi.grid.sid%3B%0A%09eventContext.instance.awsuiaxios.post%28%7B%0A%09%09%09url%3A%20%22./jd%22%2C%0A%09%09%09data%3A%20%7B%0A%09%09%09%09cmd%3A%20%22com.awspaas.user.apps.app.controller.updatePalFileState%22%2C%0A%09%09%09%09sid%3A%20sid%2C%0A%09%09%09%09plId%3A%20plId%2C%0A%09%09%09%09state%3A%20%221%22%2C%0A%09%09%09%09type%3A%20%220%22%0A%09%09%09%09//%20bindId%3A%20%20eventContext.row._BINDID%2C%0A%09%09%09%09//APPLYNO%3A%20JSON.stringify%28result%29%0A%09%09%09%09//title%20%3A%20eventContext.row.FILENAME%0A%09%09%09%7D%0A%09%09%7D%29%0A%09%09.then%28function%28response%29%20%7B%0A%09%09%09if%20%28response.result%20%21%3D%20%22error%22%29%20%7B%0A%09%09%09%09if%20%28response.result%20%3D%3D%20%22ok%22%29%20%7B%0A%09%09%09%09%09eventContext.instance.%24message%28%7B%0A%09%09%09%09%09%09type%3A%20%22success%22%2C%0A%09%09%09%09%09%09message%3A%20%22%u6587%u4EF6%u5DF2%u6539%u4E3A%u53D1%u5E03%u72B6%u6001%uFF01%22%0A%09%09%09%09%09%7D%29%3B%0A%09%09%09%09%7D%20else%20%7B%0A%09%09%09%09%09eventContext.instance.%24message%28%7B%0A%09%09%09%09%09%09type%3A%20%22warning%22%2C%0A%09%09%09%09%09%09message%3A%20response.result%0A%09%09%09%09%09%7D%29%3B%0A%0A%09%09%09%09%7D%0A%09%09%09%7D%0A%0A%09%09%7D%29%0A%09%09.catch%28function%28response%29%20%7B%0A%09%09%09console.log%28response%29%3B%0A%09%09%7D%29%3B%0A%0A%7D%0A%0A%0A%0A%0A%0A</eventscript>
<beforeeventcall></beforeeventcall>
<beforeeventscript></beforeeventscript>
<aftereventcall></aftereventcall>
<aftereventscript></aftereventscript>
</userextendbutton>
</userextendbuttons>
<userextendbehaviors>
<userextendbehavior id="obj_995d67ce1e2146e4a42b594e46ecb6d9" name="打开手册">
<templatecall>onclick%3D</templatecall>
<templatescript>var%20data%20%3D%20eventContext.DWApi.grid.getCheckedData%28%29%3B%0Aconst%20sid%20%3D%20eventContext.DWApi.sid%3B%0Avar%20paId%20%3D%20data%5B0%5D.PLID%3B%0Awindow.open%28%27https%3A//bpm.yili.com%3A8088/portal/r/w%3Fuuid%3D%27+paId+%27%26teamId%3D%26cmd%3Dcom.actionsoft.apps.coe.pal_pl_repository_designer%26sid%3D%27+sid%29</templatescript>
</userextendbehavior>
</userextendbehaviors>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,64 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<AWSDWModel>
<id>obj_ffba75874b7d468fb055dc4ca98a5d2b</id>
<createUser>admin</createUser>
<createTime>2022-10-25 16:42:46</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-28 14:02:08</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrPoSmT+y9F2ye3XC1Hh4C0PD25sw/EQFQriE7rDN+HwfkCZeYigT3g7WWR4TQIoOc</signature>
<managed>false</managed>
<version>1.0</version>
<processGroupId>obj_ffba75874b7d468fb055dc4ca98a5d2b</processGroupId>
<processGroupName></processGroupName>
<categoryName>文件处理</categoryName>
<dwType>1</dwType>
<processAdministrator>admin</processAdministrator>
<title id="obj_53feae933e6b439ea526b32e4a5ef3fb" label="问题模型统计" extendcode="" event=""/>
<dataView id="obj_7d6f12fe5714463595e484f24a9b361a" label="首页" showType="link" orderIndex="0" dwReportType="-1" isDefault="false" category="普通视图" implClassName="com.actionsoft.bpms.dw.design.dataview.CommonDataView" security="" event="" url="" userExtendJs="" show="true">
<showHighSecurity>false</showHighSecurity>
<dataParams></dataParams>
<layoutECategoryType></layoutECategoryType>
<layoutECategoryTypeLast></layoutECategoryTypeLast>
<afterLoadEventCall></afterLoadEventCall>
<afterLoadEventScript></afterLoadEventScript>
<toolbar id="obj_5277721cea7546028e18f568d53f6d3f" isshow="true" extendcode="" event="">
<button id="obj_b9b5ccee863d44509c81ac5a419f2ffa" refbuttonid="save" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="1" mobileShow="false" event="" selectShow="false"/>
<button id="obj_ea059bea06d643a9be1c3526eb7904c4" refbuttonid="new" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="2" mobileShow="false" event="" selectShow="false"/>
<button id="obj_63ab87b9afe443f7bd9a8fa509ae61b3" refbuttonid="delete" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="3" mobileShow="false" event="" selectShow="true"/>
<button id="obj_bdf7451270044b659eac4c4435fbb954" refbuttonid="print" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="4" mobileShow="false" event="" selectShow="false"/>
<button id="obj_8727642b88b44f13ad60ce0c8eea9895" refbuttonid="refresh" cls="" fontColor="" bgColor="" security="" isshow="true" orderindex="5" mobileShow="false" event="" selectShow="false"/>
<button id="obj_d405afef9ff24085b9129534c60e6b21" refbuttonid="exportDWData" cls="" fontColor="" bgColor="" security="" isshow="false" orderindex="6" mobileShow="false" event="" selectShow="false"/>
</toolbar>
<searcher id="obj_1c10f8620c494937a78c944291aec1b5" isshow="true" layoutType="tile" tdGroup="4" tileLayout="y" textCls="" dwLeftCls="" dwRightCls="" extendcode="" event="" xconditionEvent="" tileOpen="false">
<likecondition id="obj_b984c7254999437e9b81dc3131e99cb9" field="PLNAME" extend1="" label="模型名称" comparetype="like" uiname="TEXT" relationship="" uidefault="" uicomponent="文本" uiref="" required="false" security="" orderindex="0" event=""/>
</searcher>
<navTree id="obj_eecb2a7259f34b548b66bb961166ae4e" isshow="false" type="" rootcls="" leafcls="" ismultiple="false" isexpanded="true" orderindex="" event=""/>
<layout id="obj_a7f282226c214f81a2c009156b85da0c" label="" classname="com.actionsoft.bpms.dw.exec.layout.LayoutA" event=""/>
<datagrid id="obj_e53ed778eb0b4cc3aab5f789dc5ce6c9" isshow="true" autoSearch="true" customSet="true" select="false" datasource="bo:BO_EU_PAL_ERROR_FILE" countSql="" pagesize="100" event="" rowDefHeight="25" showCheckBox="true" ismultiple="true" isshownumbercol="true" numberCellTotal="false" shownumbercolwidth="40px" freezeCols="0" wrap="false" nowrapTitle="false" refbehaviorid="|_title{}title_||||" behaviortarget="" behaviorConfig="" extendsql="" identifier="_ID" extend1="" multiHeader="">
<dataBaseConn></dataBaseConn>
<freezeField></freezeField>
<column id="589d4726-b64c-4033-bf92-f750ad8e8ae6" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="197" colALias="" colTableAlias="" colTable="BO_EU_PAL_ERROR_FILE" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLNAME" label="模型名称" orderindex="0" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="2ce49e57-fd2c-4742-8a45-365df6e8657d" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="301" colALias="" colTableAlias="" colTable="BO_EU_PAL_ERROR_FILE" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="PLID" label="模型ID" orderindex="1" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="23c04353-68b9-4358-bbe2-cc3e51526398" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="184" colALias="" colTableAlias="" colTable="BO_EU_PAL_ERROR_FILE" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="FRAMEWORK" label="架构名称" orderindex="2" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="006de5e6-9a20-44de-8d9d-f0744faef67e" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_ERROR_FILE" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="VERSION" label="版本号" orderindex="3" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="650bc6a7-52ba-4283-8c01-875318e8ca33" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_ERROR_FILE" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="TYPE" label="模型类型" orderindex="4" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="2df33ac9-dc51-41af-8b4c-125a94b1e07b" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="150" colALias="" colTableAlias="" colTable="BO_EU_PAL_ERROR_FILE" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ISPUBLISH" label="是否发布" orderindex="5" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="9883147e-c2ec-4a7e-b0d9-4981f9e1aa3d" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="67" colALias="" colTableAlias="" colTable="BO_EU_PAL_ERROR_FILE" length="128" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="ERRORTYPE" label="错误类型" orderindex="6" colbehaviortarget="" ishidden="false" export="true" backHide="false" isusedvalue="false" tableheadsort="true" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="0" boType="AWSUI.Text" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="1f6d9e0a-662d-4e36-9363-0e309e61d779" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_ERROR_FILE" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ORGID" label="单位ID" orderindex="7" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="06c0a5c6-0366-4abf-8a8b-29c5e2dbfae9" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_PAL_ERROR_FILE" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEDATE" label="创建日期" orderindex="8" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="5dc14874-30f1-40a5-8f98-fa2f417dea06" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_ERROR_FILE" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_CREATEUSER" label="创建人" orderindex="9" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="834885dc-f91e-4235-905a-1bbd346f6a77" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="135" colALias="" colTableAlias="" colTable="BO_EU_PAL_ERROR_FILE" length="0" required="0" align="center" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEDATE" label="更新日期" orderindex="10" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="DATE" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="86ff53a5-6eb3-4d80-a57d-451f4ff37c27" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_ERROR_FILE" length="36" required="1" align="left" showrule="{&quot;type&quot;: &quot;org&quot;,&quot;orgtype&quot;: &quot;user&quot;}" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_UPDATEUSER" label="更新人" orderindex="11" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="89146ca2-07b3-4508-aded-55664750fb99" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_ERROR_FILE" length="1" required="0" align="right" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ISEND" label="流程是否结束" orderindex="12" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="NUMBER" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="fd8180a3-1d71-43e7-b113-1b6c50a26480" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_ERROR_FILE" length="36" required="0" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_ID" label="业务表ID" orderindex="13" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<column id="c45a45f3-e96f-485f-a6d9-abce8f2e7ff1" sort="" isfilter="false" bgcolor="" fontcolor="" fontsize="12px" width="120" colALias="" colTableAlias="" colTable="BO_EU_PAL_ERROR_FILE" length="36" required="1" align="left" showrule="" upshowrule="" upDataClassName="" extend1="" extend2="" security="" securityLevel="0" event="" field="_BINDID" label="流程实例ID" orderindex="14" colbehaviortarget="" ishidden="true" export="false" backHide="true" isusedvalue="true" tableheadsort="false" colrefbehaviorid="" columnAction="" datatype="TEXT" handleType="1" boType="" count="false" countType="" colorFullNote="false" colorFullNoteMap=""/>
<dynamicRule></dynamicRule>
</datagrid>
<reportSetting></reportSetting>
<chartSetting></chartSetting>
</dataView>
<userextendbuttons/>
<userextendbehaviors/>
<iconFontCode></iconFontCode>
<iconFontColor></iconFontColor>
</AWSDWModel>

View File

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<formModel>
<id>174c2259-a54a-4b4f-a375-912aea4ca162</id>
<createUser>admin</createUser>
<createTime>2022-11-08 15:19:29</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-08 17:00:31</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrSzIU7heDv4vD9lTXoXwio0D5GmNo0fg1wpLRpyvatxGeeFp1PIP7RNB+nmy57kir</signature>
<managed>false</managed>
<title>补充发送OA待阅</title>
<deleted>false</deleted>
<categoryName>待办待阅</categoryName>
<administrator>admin</administrator>
<defaultLanguage></defaultLanguage>
<url></url>
<urlHeight></urlHeight>
<qrCodeLink></qrCodeLink>
<formItems>
<formItem>
<id>ca052f7f-2cb6-44aa-bf99-b8ee6c38a0e9</id>
<title>补充发送OA待阅</title>
<templateFile>{"tablet":"待办待阅-补充发送OA待阅.htm","pc":"待办待阅-补充发送OA待阅.htm","mobile":"待办待阅-补充发送OA待阅_m.htm"}</templateFile>
<grid>false</grid>
<gridSetting></gridSetting>
<orderBy></orderBy>
<pageLimit>0</pageLimit>
<boModelId>522c9ad1-5ce3-4c3c-9aaf-39323976096b</boModelId>
<dictionaryFileName></dictionaryFileName>
<hiddenHead>false</hiddenHead>
<theme>{"pc":"_bpm.platform","mobile":"_bpm.platform"}</theme>
<itemDisplays/>
<scheme>{"pc":"scheme_aws.css","mobile":""}</scheme>
<calcFormula></calcFormula>
<conditionControl></conditionControl>
<validate></validate>
<icon></icon>
<gridControl></gridControl>
<summaryControl></summaryControl>
<ruleControl></ruleControl>
<hiddenFields></hiddenFields>
<hiddenAddBtn>false</hiddenAddBtn>
<verticalLayout>false</verticalLayout>
</formItem>
</formItems>
</formModel>

View File

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<formModel>
<id>1fa52d9c-3422-40e3-8552-8ac8071f4c7a</id>
<createUser>admin</createUser>
<createTime>2022-10-09 19:18:36</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-10-09 19:18:50</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGrGxjAgqDJhEkrGZsyeQjB32v2Pyec/jWUdcF35QtFCu4sem4xs13jnXvYshqiSkb6</signature>
<managed>false</managed>
<title>批量发布时不发布的文件过滤</title>
<deleted>false</deleted>
<categoryName>文件处理</categoryName>
<administrator>admin</administrator>
<defaultLanguage></defaultLanguage>
<url></url>
<urlHeight></urlHeight>
<qrCodeLink></qrCodeLink>
<formItems>
<formItem>
<id>8c6af8f5-83ad-4ed9-bd8b-48ab5ce03728</id>
<title>批量发布时不发布的文件过滤</title>
<templateFile>{"tablet":"文件处理-批量发布时不发布的文件过滤.htm","pc":"文件处理-批量发布时不发布的文件过滤.htm","mobile":"文件处理-批量发布时不发布的文件过滤_m.htm"}</templateFile>
<grid>false</grid>
<gridSetting></gridSetting>
<orderBy></orderBy>
<pageLimit>0</pageLimit>
<boModelId>cea1b185-e136-40db-9c78-1e1960259906</boModelId>
<dictionaryFileName></dictionaryFileName>
<hiddenHead>false</hiddenHead>
<theme>{"pc":"_bpm.platform","mobile":"_bpm.platform"}</theme>
<itemDisplays/>
<scheme>{"pc":"scheme_aws.css","mobile":""}</scheme>
<calcFormula></calcFormula>
<conditionControl></conditionControl>
<validate></validate>
<icon></icon>
<gridControl></gridControl>
<summaryControl></summaryControl>
<ruleControl></ruleControl>
<hiddenFields></hiddenFields>
<hiddenAddBtn>false</hiddenAddBtn>
<verticalLayout>false</verticalLayout>
</formItem>
</formItems>
</formModel>

View File

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<formModel>
<id>34b4e6ad-7aa3-4237-b42a-3d2332ac57b1</id>
<createUser>admin</createUser>
<createTime>2022-11-07 09:37:08</createTime>
<updateUser>admin</updateUser>
<updateTime>2022-11-20 11:24:07</updateTime>
<signature>tGOmxiTgjT/77UoYpSlq8Vc+hHPRoJWHdZexXc7zEpYuMNdhvSICeJnlc/RzRHGr4C1CPacXnMq2ra2zOM6SI1TwyQWVenanl5kCJCttzTwQe5Y1ILF0J1xob7PDe5jW</signature>
<managed>false</managed>
<title>发布成功回执单</title>
<deleted>false</deleted>
<categoryName>待办待阅</categoryName>
<administrator>admin</administrator>
<defaultLanguage></defaultLanguage>
<url></url>
<urlHeight></urlHeight>
<qrCodeLink></qrCodeLink>
<formItems>
<formItem>
<id>9b4e19de-43ef-4706-808b-b4e6d530953c</id>
<title>发布成功回执单</title>
<templateFile>{"tablet":"待办待阅-发布成功回执单.htm","pc":"待办待阅-发布成功回执单.htm","mobile":"待办待阅-发布成功回执单_m.htm"}</templateFile>
<grid>false</grid>
<gridSetting></gridSetting>
<orderBy></orderBy>
<pageLimit>0</pageLimit>
<boModelId>f17c4bf4-67d2-4d33-8b05-055e258c6fc2</boModelId>
<dictionaryFileName></dictionaryFileName>
<hiddenHead>false</hiddenHead>
<theme>{"pc":"_bpm.platform","mobile":"_bpm.platform"}</theme>
<itemDisplays/>
<scheme>{"pc":"scheme_aws.css","mobile":"scheme_aws.css"}</scheme>
<calcFormula></calcFormula>
<conditionControl></conditionControl>
<validate></validate>
<icon></icon>
<gridControl></gridControl>
<summaryControl></summaryControl>
<ruleControl>{"displayRule":[{"expressions":[{"type":"field","expression":"BO_EU_PAL_PULBISH_SUCCESS.TITLE","juge":"like","value":"补充","fieldType":"string"}],"rules":[{"display":"hide","dom":"field","domId":"BO_EU_PAL_PULBISH_SUCCESS.SEND_SCOP","labelName":"","dwId":null,"dwMap":""},{"display":"hide","dom":"field","domId":"BO_EU_PAL_PULBISH_SUCCESS.SEND_SCOPE_ORGNUM","labelName":"","dwId":null,"dwMap":""},{"display":"hide","dom":"field","domId":"BO_EU_PAL_PULBISH_SUCCESS.SEND_SCOPE_POST_NUM","labelName":"","dwId":null,"dwMap":""},{"display":"hide","dom":"field","domId":"BO_EU_PAL_PULBISH_SUCCESS.SEND_SCOPE_LEVEL_NUM","labelName":"","dwId":null,"dwMap":""}],"fields":["BO_EU_PAL_PULBISH_SUCCESS.TITLE"]}],"requiredRule":[],"modifyRule":[],"calcRule":[]}</ruleControl>
<hiddenFields></hiddenFields>
<hiddenAddBtn>false</hiddenAddBtn>
<verticalLayout>false</verticalLayout>
</formItem>
</formItems>
</formModel>

Some files were not shown because too many files have changed in this diff Show More