bom更新通知记录表
This commit is contained in:
parent
7925d9bfc2
commit
bfb0a554b0
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding='gb2312'?>
|
||||
<module>
|
||||
<rest>
|
||||
<resource classname="nccloud.api.mmbd.bchangemanage.bchangemaster.BchangeMasterManageResources" exinfo=""/>
|
||||
</rest>
|
||||
</module>
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="gb2312"?>
|
||||
<module name="mmbd">
|
||||
<public>
|
||||
<component priority="0" singleton="true" remote="true" tx="CMT" supportAlias="true">
|
||||
<interface>nccloud.api.mmbd.bchangemanage.bchangemaster.BchangeMasterManageResources</interface>
|
||||
<implementation>nccloud.api.mmbd.bchangemanage.bchangemaster.BchangeMasterManageResources</implementation>
|
||||
</component>
|
||||
<component priority="0" singleton="true" remote="true" tx="CMT" supportAlias="true">
|
||||
<interface>nc.itf.mmbd.bchange.bchangemaster.IBchangeMasterVOService</interface>
|
||||
<implementation>nc.impl.mmbd.bchange.bchangemaster.BchangeMasterVOServiceImpl</implementation>
|
||||
</component>
|
||||
</public>
|
||||
</module>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
<component name="bchange" displayname="bom变更记录">
|
||||
<dependencies/>
|
||||
</component>
|
||||
|
|
@ -0,0 +1,242 @@
|
|||
# 新增主实体
|
||||
|
||||
## 1.接口说明
|
||||
新增主实体
|
||||
## 2.使用场景
|
||||
新增主实体
|
||||
## 3.接口调用说明
|
||||
|
||||
### 3.1请求类型
|
||||
POST
|
||||
|
||||
### 3.2请求示例
|
||||
> http://IP:port/nccloud/api/mmbd/bchangemanage/bchangeMaster/addBchangeMasterVO
|
||||
### 3.3请求URL参数说明
|
||||
>以下参数为billhead字段的参数
|
||||
|
||||
|参数|描述|类型|示例值|是否必输|
|
||||
|:--|:--|:--|:--|:--|
|
||||
| pk_bchangemaster|主键|主键||是|
|
||||
| code|code|字符串|code_example|否|
|
||||
| name|name|字符串|name_example|否|
|
||||
| billno|施工单号|字符串|billno_example|否|
|
||||
| parent_no|父项编码|字符串|parent_no_example|否|
|
||||
| child_no|子项编码|字符串|child_no_example|否|
|
||||
| before_num|变更前数量|字符串|before_num_example|否|
|
||||
| after_num|变更后数量|字符串|after_num_example|否|
|
||||
| pk_org|pk_org|组织||否|
|
||||
| pk_group|pk_group|组织_集团||否|
|
||||
| pk_org_v|组织多版本|组织_版本信息||否|
|
||||
| dr|dr|整数|100|否|
|
||||
| ts|ts|日期时间|2021-09-02 16:29:59|否|
|
||||
| status|vostatus|整数|100|否|
|
||||
|
||||
|
||||
> 请求参数JSON示例
|
||||
```
|
||||
{
|
||||
"bchangeMaster":{
|
||||
"pk_bchangemaster":"",
|
||||
"code":"code_example",
|
||||
"name":"name_example",
|
||||
"billno":"billno_example",
|
||||
"parent_no":"parent_no_example",
|
||||
"child_no":"child_no_example",
|
||||
"before_num":"before_num_example",
|
||||
"after_num":"after_num_example",
|
||||
"pk_org":"",
|
||||
"pk_group":"",
|
||||
"pk_org_v":"",
|
||||
"dr":"100",
|
||||
"ts":"2021-09-02 16:29:59",
|
||||
"status":"100",
|
||||
},
|
||||
}
|
||||
```
|
||||
|
||||
### 3.4返回值说明
|
||||
|
||||
#### 3.4.1正确返回示例
|
||||
>返回值JSON示例
|
||||
|
||||
```
|
||||
{
|
||||
|
||||
}
|
||||
```
|
||||
#### 3.4.2错误返回示例
|
||||
>返回值JSON示例
|
||||
|
||||
```
|
||||
{
|
||||
"success":false,
|
||||
"code":"1000000001",
|
||||
"message":"errorMessage"
|
||||
}
|
||||
```
|
||||
|
||||
# 修改主实体
|
||||
|
||||
## 1.接口说明
|
||||
修改主实体
|
||||
## 2.使用场景
|
||||
修改主实体
|
||||
## 3.接口调用说明
|
||||
|
||||
### 3.1请求类型
|
||||
POST
|
||||
|
||||
### 3.2请求示例
|
||||
> http://IP:port/nccloud/api/mmbd/bchangemanage/bchangeMaster/updateBchangeMasterVO
|
||||
### 3.3请求URL参数说明
|
||||
>以下参数为billhead字段的参数
|
||||
|
||||
|参数|描述|类型|示例值|是否必输|
|
||||
|:--|:--|:--|:--|:--|
|
||||
| pk_bchangemaster|主键|主键||是|
|
||||
| code|code|字符串|code_example|否|
|
||||
| name|name|字符串|name_example|否|
|
||||
| billno|施工单号|字符串|billno_example|否|
|
||||
| parent_no|父项编码|字符串|parent_no_example|否|
|
||||
| child_no|子项编码|字符串|child_no_example|否|
|
||||
| before_num|变更前数量|字符串|before_num_example|否|
|
||||
| after_num|变更后数量|字符串|after_num_example|否|
|
||||
| pk_org|pk_org|组织||否|
|
||||
| pk_group|pk_group|组织_集团||否|
|
||||
| pk_org_v|组织多版本|组织_版本信息||否|
|
||||
| dr|dr|整数|100|否|
|
||||
| ts|ts|日期时间|2021-09-02 16:29:59|否|
|
||||
| status|vostatus|整数|100|否|
|
||||
|
||||
|
||||
> 请求参数JSON示例
|
||||
|
||||
```
|
||||
{
|
||||
"bchangeMaster":{
|
||||
"pk_bchangemaster":"",
|
||||
"code":"code_example",
|
||||
"name":"name_example",
|
||||
"billno":"billno_example",
|
||||
"parent_no":"parent_no_example",
|
||||
"child_no":"child_no_example",
|
||||
"before_num":"before_num_example",
|
||||
"after_num":"after_num_example",
|
||||
"pk_org":"",
|
||||
"pk_group":"",
|
||||
"pk_org_v":"",
|
||||
"dr":"100",
|
||||
"ts":"2021-09-02 16:29:59",
|
||||
"status":"100",
|
||||
},
|
||||
}
|
||||
```
|
||||
|
||||
### 3.4返回值说明
|
||||
|
||||
#### 3.4.1正确返回示例
|
||||
>返回值JSON示例
|
||||
|
||||
```
|
||||
{
|
||||
|
||||
}
|
||||
```
|
||||
#### 3.4.2错误返回示例
|
||||
>返回值JSON示例
|
||||
|
||||
```
|
||||
{
|
||||
"success":false,
|
||||
"code":"1000000001",
|
||||
"message":"errorMessage"
|
||||
}
|
||||
```
|
||||
|
||||
# 查询主实体
|
||||
|
||||
## 1.接口说明
|
||||
查询主实体
|
||||
## 2.使用场景
|
||||
查询主实体
|
||||
## 3.接口调用说明
|
||||
|
||||
### 3.1请求类型
|
||||
POST
|
||||
|
||||
### 3.2请求示例
|
||||
> http://IP:port/nccloud/api/mmbd/bchangemanage/bchangeMaster/queryBchangeMasterVO
|
||||
### 3.3请求URL参数说明
|
||||
**支持常用字段的查询**
|
||||
> 请求参数JSON示例
|
||||
|
||||
```
|
||||
{
|
||||
"code":"0000001",
|
||||
"pk_org":"1001F21000000000BNA4"
|
||||
}
|
||||
```
|
||||
### 3.4返回值说明
|
||||
|
||||
#### 3.4.1正确返回示例
|
||||
>返回值JSON示例
|
||||
|
||||
```
|
||||
{
|
||||
|
||||
}
|
||||
```
|
||||
#### 3.4.2错误返回示例
|
||||
>返回值JSON示例
|
||||
|
||||
```
|
||||
{
|
||||
"success":false,
|
||||
"code":"1000000001",
|
||||
"message":"errorMessage"
|
||||
}
|
||||
```
|
||||
|
||||
# 删除主实体
|
||||
|
||||
## 1.接口说明
|
||||
删除主实体
|
||||
## 2.使用场景
|
||||
删除主实体
|
||||
## 3.接口调用说明
|
||||
|
||||
### 3.1请求类型
|
||||
POST
|
||||
|
||||
### 3.2请求示例
|
||||
> http://IP:port/nccloud/api/mmbd/bchangemanage/bchangeMaster/deleteBchangeMasterVO
|
||||
### 3.3请求URL参数说明
|
||||
**支持主键字段的删除**
|
||||
> 请求参数JSON示例
|
||||
|
||||
```
|
||||
{
|
||||
"pk_bchangemaster":"0001G4100000000021VS"
|
||||
}
|
||||
```
|
||||
### 3.4返回值说明
|
||||
|
||||
#### 3.4.1正确返回示例
|
||||
>返回值JSON示例
|
||||
|
||||
```
|
||||
{
|
||||
|
||||
}
|
||||
```
|
||||
#### 3.4.2错误返回示例
|
||||
>返回值JSON示例
|
||||
|
||||
```
|
||||
{
|
||||
"success":false,
|
||||
"code":"1000000001",
|
||||
"message":"errorMessage"
|
||||
}
|
||||
```
|
||||
|
||||
|
|
@ -0,0 +1,206 @@
|
|||
DELETE FROM pub_vochange_s WHERE pk_vochange in ( select pk_vochange from pub_vochange where dest_billtype in ( '1=2' ) or src_billtype in ( '1=2' ) )
|
||||
/
|
||||
DELETE FROM pub_vochange_b WHERE pk_vochange in ( select pk_vochange from pub_vochange where dest_billtype in ( '1=2' ) or src_billtype in ( '1=2' ) )
|
||||
/
|
||||
DELETE FROM pub_vochange WHERE dest_billtype in ( '1=2' ) or src_billtype in ( '1=2' )
|
||||
/
|
||||
DELETE FROM bd_mode_selected WHERE MDCLASSID='3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5'
|
||||
/
|
||||
DELETE FROM bd_mode_all WHERE MDCLASSID='3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5'
|
||||
/
|
||||
DELETE FROM sscrp_busiclass WHERE billtypecode in ( '1=2' )
|
||||
/
|
||||
DELETE FROM org_sscbusiunitclientage WHERE pk_billtype in ( '1=2' )
|
||||
/
|
||||
DELETE FROM bd_sharebilltype WHERE billtypecode in ( '1=2' )
|
||||
/
|
||||
DELETE FROM sscrp_fieldmap_b WHERE pk_fieldmap in ( select pk_fieldmap from sscrp_fieldmap where src_billtype in ( '1=2' ) )
|
||||
/
|
||||
DELETE FROM sscrp_fieldmap WHERE src_billtype in ( '1=2' )
|
||||
/
|
||||
DELETE FROM xi_billdefine WHERE billtype='10H140BOMRECORD'
|
||||
/
|
||||
DELETE FROM xx_busiprodef WHERE metadataid='3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5'
|
||||
/
|
||||
DELETE FROM bd_refinfo WHERE modulename='mmbd' and metadatanamespace='uapbd' and metadatatypename='bchangeMaster' and (mobilerefpath is null or mobilerefpath='' or mobilerefpath='~' ) and name like 'bom变更记录_主实体_%'
|
||||
/
|
||||
DELETE FROM opm_apimanager WHERE APIURI in('/nccloud/api/mmbd/bchangemanage/bchangeMaster/addBchangeMasterVO','/nccloud/api/mmbd/bchangemanage/bchangeMaster/updateBchangeMasterVO','/nccloud/api/mmbd/bchangemanage/bchangeMaster/deleteBchangeMasterVO','/nccloud/api/mmbd/bchangemanage/bchangeMaster/queryBchangeMasterVO')
|
||||
/
|
||||
DELETE FROM pub_systemplate_base WHERE dr=0 and appcode = '10H140BOMRECORD' and tempstyle = 3
|
||||
/
|
||||
DELETE FROM excel_translator WHERE TRACLASSNAME = 'nc.impl.mmbd.bchange.bchangemaster.BchangeMasterVOTranslator'
|
||||
/
|
||||
DELETE FROM excel_outputprocess WHERE billtype = 'BCHANGEMASTER_10H140BOMRECORD'
|
||||
/
|
||||
DELETE FROM excel_billprocess WHERE billtype = 'BCHANGEMASTER_10H140BOMRECORD'
|
||||
/
|
||||
DELETE FROM sm_appmenuitem WHERE menuitemcode in('10143699')
|
||||
/
|
||||
DELETE FROM sm_ctpermdetail WHERE OWNERCONFIG in ( select pk_special_permission from sm_specialpermission where pk_special_permission in ( select pk_permission_res from sm_permission_res where mdid='3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5' ) )
|
||||
/
|
||||
DELETE FROM sm_specialpermission WHERE RESOURCEID in ( select pk_permission_res from sm_permission_res where mdid='3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5')
|
||||
/
|
||||
DELETE FROM sm_permission_res WHERE mdid='3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5'
|
||||
/
|
||||
DELETE FROM sm_op_busiop WHERE pk_operation in ( select pk_res_operation from sm_res_operation where resourceid in(select pk_permission_res from sm_permission_res where mdid='3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5'))
|
||||
/
|
||||
DELETE FROM sm_res_operation WHERE resourceid in(select pk_permission_res from sm_permission_res where mdid='3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5')
|
||||
/
|
||||
DELETE FROM sm_appparam WHERE parentid in ( select pk_appregister from sm_appregister where code in ('10H140BOMRECORD'))
|
||||
/
|
||||
DELETE FROM sm_appbutnregister WHERE appid in ( select pk_appregister from sm_appregister where code in ('10H140BOMRECORD'))
|
||||
/
|
||||
DELETE FROM sm_apppage WHERE parent_id in ( select pk_appregister from sm_appregister where code in ('10H140BOMRECORD'))
|
||||
/
|
||||
DELETE FROM sm_appregister WHERE code in ('10H140BOMRECORD')
|
||||
/
|
||||
DELETE FROM pub_print_region WHERE ctemplateid in ( select ctemplateid from pub_print_template where dr=0 and appcode in ('10H140BOMRECORD'))
|
||||
/
|
||||
DELETE FROM pub_print_variable WHERE ctemplateid in ( select ctemplateid from pub_print_template where dr=0 and appcode in ('10H140BOMRECORD'))
|
||||
/
|
||||
DELETE FROM pub_print_cell WHERE ctemplateid in ( select ctemplateid from pub_print_template where dr=0 and appcode in ('10H140BOMRECORD'))
|
||||
/
|
||||
DELETE FROM pub_print_line WHERE ctemplateid in ( select ctemplateid from pub_print_template where dr=0 and appcode in ('10H140BOMRECORD'))
|
||||
/
|
||||
DELETE FROM pub_print_datasource WHERE ctemplateid in ( select ctemplateid from pub_print_template where dr=0 and appcode in ('10H140BOMRECORD'))
|
||||
/
|
||||
DELETE FROM pub_print_template WHERE dr=0 and appcode in ('10H140BOMRECORD')
|
||||
/
|
||||
DELETE FROM pub_form_property WHERE areaid in ( select pk_area from pub_area where pk_area in ( select pk_page_templet from pub_page_templet where appcode in ('10H140BOMRECORD') ) )
|
||||
/
|
||||
DELETE FROM pub_query_property WHERE areaid in ( select pk_area from pub_area where pk_area in ( select pk_page_templet from pub_page_templet where appcode in ('10H140BOMRECORD') ) )
|
||||
/
|
||||
DELETE FROM pub_area WHERE templetid in ( select pk_page_templet from pub_page_templet where appcode in ('10H140BOMRECORD'))
|
||||
/
|
||||
DELETE FROM pub_page_templet WHERE appcode in ('10H140BOMRECORD')
|
||||
/
|
||||
DELETE FROM pub_workitemconfig WHERE pk_billtype in ( select pk_billtypeid from bd_billtype where component = 'bchange')
|
||||
/
|
||||
DELETE FROM pub_msgtemp WHERE pk_temptype in (select pk_temptype from pub_msgtemp_type where metaid = '3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5')
|
||||
/
|
||||
DELETE FROM pub_msgtemp_var WHERE pk_temptype in ( select pk_temptype from pub_msgtemp_type where metaid = '3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5')
|
||||
/
|
||||
DELETE FROM pub_msgtemp_type WHERE metaid = '3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5'
|
||||
/
|
||||
DELETE FROM pub_bcr_elem WHERE pk_billcodebase in ( select pk_billcodebase from pub_bcr_rulebase where nbcrcode = (select code from pub_bcr_nbcr where metaid = '3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5'))
|
||||
/
|
||||
DELETE FROM pub_bcr_rulebase WHERE nbcrcode = (select code from pub_bcr_nbcr where metaid = '3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5')
|
||||
/
|
||||
DELETE FROM pub_bcr_candiattr WHERE pk_nbcr in ( select pk_nbcr from pub_bcr_nbcr where metaid = '3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5')
|
||||
/
|
||||
DELETE FROM pub_bcr_nbcr WHERE metaid = '3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5'
|
||||
/
|
||||
DELETE FROM bd_userdefitem WHERE pk_userdefrule in ( select pk_userdefrule from bd_userdefrule where code in('bchangeMaster'))
|
||||
/
|
||||
DELETE FROM bd_userdefruleref WHERE pk_userdefrule in ( select pk_userdefrule from bd_userdefrule where code in('bchangeMaster'))
|
||||
/
|
||||
DELETE FROM bd_userdefrule WHERE code in('bchangeMaster')
|
||||
/
|
||||
DELETE FROM bd_uniquerule_item WHERE pk_rule in ( select pk_rule from bd_uniquerule where MDCLASSID='3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5')
|
||||
/
|
||||
DELETE FROM bd_uniquerule WHERE MDCLASSID='3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5'
|
||||
/
|
||||
DELETE FROM pub_publishapp WHERE pk_billtypeid in ( select pk_billtypeid from bd_billtype where component = 'bchange')
|
||||
/
|
||||
DELETE FROM bd_relatedapp WHERE pk_billtypeid in ( select pk_billtypeid from bd_billtype where component = 'bchange')
|
||||
/
|
||||
DELETE FROM bd_fwdbilltype WHERE pk_billtype in ( select pk_billtypeid from bd_billtype where component = 'bchange')
|
||||
/
|
||||
DELETE FROM bd_billtype2 WHERE pk_billtypeid in ( select pk_billtypeid from bd_billtype where component = 'bchange')
|
||||
/
|
||||
DELETE FROM pub_busiclass WHERE pk_billtypeid in ( select pk_billtypeid from bd_billtype where component = 'bchange')
|
||||
/
|
||||
DELETE FROM pub_billactionconfig WHERE pk_billactiongroup in ( select pk_billactiongroup from pub_billactiongroup where pk_billactiongroup in ( select pk_billtypeid from bd_billtype where component = 'bchange' ) )
|
||||
/
|
||||
DELETE FROM pub_billactiongroup WHERE pk_billtypeid in ( select pk_billtypeid from bd_billtype where component = 'bchange')
|
||||
/
|
||||
DELETE FROM pub_billaction WHERE pk_billtypeid in ( select pk_billtypeid from bd_billtype where component = 'bchange')
|
||||
/
|
||||
DELETE FROM pub_function WHERE pk_billtypeid in ( select pk_billtypeid from bd_billtype where component = 'bchange')
|
||||
/
|
||||
DELETE FROM bd_billtype WHERE component = 'bchange'
|
||||
/
|
||||
DELETE FROM pub_vochange_s WHERE pk_vochange in ( select pk_vochange from pub_vochange where dest_billtype in ( '1=2' ) or src_billtype in ( '1=2' ) )
|
||||
/
|
||||
DELETE FROM pub_vochange_b WHERE pk_vochange in ( select pk_vochange from pub_vochange where dest_billtype in ( '1=2' ) or src_billtype in ( '1=2' ) )
|
||||
/
|
||||
DELETE FROM pub_vochange WHERE dest_billtype in ( '1=2' ) or src_billtype in ( '1=2' )
|
||||
/
|
||||
INSERT INTO sm_appmenuitem(ts,dr,app_image,is_cloud_app,floor,menuorder,pk_menuitem,menuitemcode,menuitemname,menudes,appcode,appid,pk_menu,parentcode,resid,pk_group,image_src,menuitemname2,menuitemname3,menuitemname4,menuitemname5,menuitemname6) VALUES('2025-08-26 16:02:58',0,NULL,NULL,NULL,NULL,'1001ZZ1000000NPH0ROZ','10143699','BOM变更通知',NULL,'10H140BOMRECORD','1001ZZ1000000NPH0ROY','1004Z510000000000FFL','101436',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO sm_appregister(ts,dr,pk_appregister,code,name,own_module,mountid,width,height,target_path,apptype,image_src,uselicense_load,orgtypecode,funtype,parent_id,isenable,pk_group,app_desc,scopeid,help_name,iscauserusable,mdid,source_app_code,resid,fun_property,iscopypage,pageresfile,creator,creationtime,modifier,modifiedtime,fastlaunchparam,fastlaunchurl,fastlaunchpagecode,componenttype,iscommon_configuration,gridnums,background_image,pc_appid,name2,name3,name4,name5,name6) VALUES('2025-08-26 16:02:58',0,'1001ZZ1000000NPH0ROY','10H140BOMRECORD','BOM变更通知','1014',NULL,1,1,NULL,1,'default','Y','BUSINESSUNIT00000000',0,'1001ZA100000000000E4','Y',NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','10H140BOMRECORD',NULL,0,'N',NULL,'1001A11000000DUZKRM0','2025-08-26 15:46:46','1001A11000000DUZKRM0','2025-08-26 16:03:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO sm_apppage(ts,dr,pk_apppage,pagecode,pagename,pagedesc,pageurl,parent_id,parentcode,resid,isdefault,iscarddefault,creator,creationtime,modifier,modifiedtime,pagejsurl,pageresfile,styletype,mobpageresfile,isnewpage,transfersign,openpageparams) VALUES('2025-08-26 16:03:56',0,'1001ZZ1LCP000NPH2DKV','10H140BOMRECORD_bchangeMaster','主实体',NULL,'/nccloud/resources/mmbd/bchange/10H140BOMRECORD/main/index.html','1001ZZ1000000NPH0ROY','10H140BOMRECORD',NULL,'Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_page_templet(ts,dr,pk_page_templet,code,name,resid,creator,creationtime,modifier,modifiedtime,templetdesc,isdefault,parentid,pagecode,clazz,metaid,headcode,appcode,appid,resmodule,pk_group,pk_org,layout,pagestyle,jscontent,norequireguide,templatelevel,source_appcode) VALUES('2025-08-26 16:03:56',0,'1001ZZ1LCP000NPH2DKW','10H140BOMRECORD_bchangeMaster','主实体',NULL,NULL,NULL,NULL,NULL,NULL,'Y','root','10H140BOMRECORD_bchangeMaster','nc.vo.bchange.bchange.BchangeMasterVO',NULL,'bchangeMasterTable','10H140BOMRECORD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DL7',NULL,'1001ZZ1LCP000NPH2DL5','pk_org','Y','pk_org','pk_org',120,'Y','N','N','N','N',20,NULL,NULL,NULL,1,'=','等于@',NULL,1,'refpk',204,'组织(包含全局)(所有)','Y','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N','uapbd/refer/org/OrgWithGlobalAllDataTreeRef/index','uap.org.name','0001Z01000000001V017,code=N','refer','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','359aa1ba-dc01-4ad8-9a5d-b969fb99d2d9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DL8',NULL,'1001ZZ1LCP000NPH2DL5','code','Y','code','code',120,'Y','N','N','N','N',50,NULL,NULL,NULL,2,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','a3dfd781-c3ac-4407-bfff-b4ac4cca7129',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DL9',NULL,'1001ZZ1LCP000NPH2DL5','施工单号','Y','billno','billno',120,'Y','N','N','N','N',50,NULL,NULL,NULL,3,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','b8695ab8-d5c3-424f-9022-9ba76c0b4a63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DLA',NULL,'1001ZZ1LCP000NPH2DL5','name','Y','name','name',120,'Y','N','N','N','N',50,NULL,NULL,NULL,4,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','7fa28f22-ab96-4b0b-a866-0ac2e1f5dbd9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DLB',NULL,'1001ZZ1LCP000NPH2DL5','父项编码','Y','parent_no','parent_no',120,'N','N','N','N','N',50,NULL,NULL,NULL,5,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','45e03717-5464-42e7-87de-08aae8a6eef9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DLC',NULL,'1001ZZ1LCP000NPH2DL5','子项编码','Y','child_no','child_no',120,'N','N','N','N','N',50,NULL,NULL,NULL,6,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','3cee5d9d-5b5c-4ed4-bd8d-7dc258d56c32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DLD',NULL,'1001ZZ1LCP000NPH2DL5','变更前数量','Y','before_num','before_num',120,'N','N','N','N','N',50,NULL,NULL,NULL,7,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','a311677d-97d8-4c0c-ab3b-613b0860125a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DLE',NULL,'1001ZZ1LCP000NPH2DL5','变更后数量','Y','after_num','after_num',120,'N','N','N','N','N',50,NULL,NULL,NULL,8,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','bbc6b41c-a5c7-4974-9838-063cc09ed425',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DLF',NULL,'1001ZZ1LCP000NPH2DL5','pk_group','Y','pk_group','pk_group',120,'N','N','N','N','N',20,NULL,NULL,NULL,10,'=','等于@',NULL,1,'refpk',204,'集团','Y','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N','uap/refer/riart/groupTreeRef/index','uap.group.name','0001Z010000000000ZKS,code=N','refer','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','94d2a5b9-038f-41ea-ac0d-d3cca0616609',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DLG',NULL,'1001ZZ1LCP000NPH2DL5','组织多版本','Y','pk_org_v','pk_org_v',120,'N','N','N','N','N',20,NULL,NULL,NULL,11,'=','等于@',NULL,1,'refpk',204,'业务单元版本','Y','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N','uapbd/refer/orgv/BusinessUnitVersionTreeRef/index','uap.org_v.name','0001Z01000000002V000,code=N','refer','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','31a1d6a9-18cf-4a36-a690-5f9986886950',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,'uap/refer/riart/groupTreeRef/index',NULL,NULL,NULL,'N','N','N',20,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,204,'0001Z010000000000ZKS,code=N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','uap.group.name','refer','集团','3b6dd171-2900-47f3-bfbe-41e4483a2a65',NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','94d2a5b9-038f-41ea-ac0d-d3cca0616609',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLH','1001ZZ1LCP000NPH2DL6','pk_group','pk_group','pk_group',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'Y','N','N',20,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','145ab806-6c2e-4df6-a42b-1dc0f6cbd268',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLI','1001ZZ1LCP000NPH2DL6','主键','pk_bchangemaster','pk_bchangemaster',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,'uapbd/refer/org/OrgWithGlobalAllDataTreeRef/index',NULL,NULL,NULL,'N','N','Y',20,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,204,'0001Z01000000001V017,code=N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','uap.org.name','refer','组织(包含全局)(所有)','985be8a4-3a36-4778-8afe-2d8ed3902659',NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','359aa1ba-dc01-4ad8-9a5d-b969fb99d2d9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLJ','1001ZZ1LCP000NPH2DL6','pk_org','pk_org','pk_org',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','a3dfd781-c3ac-4407-bfff-b4ac4cca7129',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLK','1001ZZ1LCP000NPH2DL6','code','code','code',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','7fa28f22-ab96-4b0b-a866-0ac2e1f5dbd9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLL','1001ZZ1LCP000NPH2DL6','name','name','name',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','b8695ab8-d5c3-424f-9022-9ba76c0b4a63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLM','1001ZZ1LCP000NPH2DL6','施工单号','billno','billno',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','45e03717-5464-42e7-87de-08aae8a6eef9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLN','1001ZZ1LCP000NPH2DL6','父项编码','parent_no','parent_no',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,6,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','3cee5d9d-5b5c-4ed4-bd8d-7dc258d56c32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLO','1001ZZ1LCP000NPH2DL6','子项编码','child_no','child_no',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,7,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','a311677d-97d8-4c0c-ab3b-613b0860125a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLP','1001ZZ1LCP000NPH2DL6','变更前数量','before_num','before_num',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,8,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','bbc6b41c-a5c7-4974-9838-063cc09ed425',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLQ','1001ZZ1LCP000NPH2DL6','变更后数量','after_num','after_num',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,'uapbd/refer/orgv/BusinessUnitVersionTreeRef/index',NULL,NULL,NULL,'N','N','N',20,NULL,NULL,NULL,NULL,NULL,NULL,9,NULL,204,'0001Z01000000002V000,code=N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','uap.org_v.name','refer','业务单元版本','da7bba89-9a59-42d6-a262-c13ef459dbd9',NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','31a1d6a9-18cf-4a36-a690-5f9986886950',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLR','1001ZZ1LCP000NPH2DL6','组织多版本','pk_org_v','pk_org_v',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_area(ts,dr,pk_area,code,name,areatype,associatedtablayout,templetid,creator,modifier,creationtime,modifiedtime,resid,relationcode,areastatus,pagination,clazz,metaid,metaname,associatedtab,position,metaspace,areadesc,tabheadcode,isunfold,isgrandson,areahide,isclosequickquery,pagesize,mainnestareacode,columnnum,icontype,isuserset,corerelation,sumfield,name2,name3,name4,name5,name6) VALUES('2025-08-26 16:03:56',0,'1001ZZ1LCP000NPH2DL5','bchangeMasterQuery','主实体_查询区',0,'horizontal','1001ZZ1LCP000NPH2DKW',NULL,NULL,NULL,NULL,NULL,NULL,'browse','','nc.vo.bchange.bchange.BchangeMasterVO','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','主实体',NULL,0,'uapbd.bchangeMaster',NULL,NULL,NULL,'N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_area(ts,dr,pk_area,code,name,areatype,associatedtablayout,templetid,creator,modifier,creationtime,modifiedtime,resid,relationcode,areastatus,pagination,clazz,metaid,metaname,associatedtab,position,metaspace,areadesc,tabheadcode,isunfold,isgrandson,areahide,isclosequickquery,pagesize,mainnestareacode,columnnum,icontype,isuserset,corerelation,sumfield,name2,name3,name4,name5,name6) VALUES('2025-08-26 16:03:57',0,'1001ZZ1LCP000NPH2DL6','bchangeMasterTable','主实体',2,'horizontal','1001ZZ1LCP000NPH2DKW',NULL,NULL,NULL,NULL,NULL,NULL,'browse','true','nc.vo.bchange.bchange.BchangeMasterVO','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','主实体',NULL,1,'uapbd.bchangeMaster',NULL,NULL,NULL,'N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO sm_appbutnregister(ts,dr,pk_btn,btncode,btnname,btndesc,resid,appid,templetid,isenable,pagecode,btnorder,btntype,btnarea,parent_code,iskeyfunc,keyboard,btncolor,pageareacode,pagedimension,displayarea,actionarea,groupdirection,disabled,visible,icon,btntip,btnname2,btnname3,btnname4,btnname5,btnname6,btntip2,btntip3,btntip4,btntip5,btntip6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DKX','bchangeMaster_Add_Group','',NULL,NULL,'1001ZZ1000000NPH0ROY',NULL,'Y','10H140BOMRECORD_bchangeMaster',1,'buttongroup','common',NULL,NULL,'','button_secondary',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO sm_appbutnregister(ts,dr,pk_btn,btncode,btnname,btndesc,resid,appid,templetid,isenable,pagecode,btnorder,btntype,btnarea,parent_code,iskeyfunc,keyboard,btncolor,pageareacode,pagedimension,displayarea,actionarea,groupdirection,disabled,visible,icon,btntip,btnname2,btnname3,btnname4,btnname5,btnname6,btntip2,btntip3,btntip4,btntip5,btntip6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DKY','Add','新增',NULL,NULL,'1001ZZ1000000NPH0ROY',NULL,'Y','10H140BOMRECORD_bchangeMaster',2,'general_btn','common','bchangeMaster_Add_Group',NULL,'Ctrl+/','button_main',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO sm_appbutnregister(ts,dr,pk_btn,btncode,btnname,btndesc,resid,appid,templetid,isenable,pagecode,btnorder,btntype,btnarea,parent_code,iskeyfunc,keyboard,btncolor,pageareacode,pagedimension,displayarea,actionarea,groupdirection,disabled,visible,icon,btntip,btnname2,btnname3,btnname4,btnname5,btnname6,btntip2,btntip3,btntip4,btntip5,btntip6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DKZ','Edit','修改',NULL,NULL,'1001ZZ1000000NPH0ROY',NULL,'Y','10H140BOMRECORD_bchangeMaster',3,'general_btn','common','bchangeMaster_Add_Group',NULL,'Alt+P','button_secondary',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO sm_appbutnregister(ts,dr,pk_btn,btncode,btnname,btndesc,resid,appid,templetid,isenable,pagecode,btnorder,btntype,btnarea,parent_code,iskeyfunc,keyboard,btncolor,pageareacode,pagedimension,displayarea,actionarea,groupdirection,disabled,visible,icon,btntip,btnname2,btnname3,btnname4,btnname5,btnname6,btntip2,btntip3,btntip4,btntip5,btntip6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DL0','Delete','删除',NULL,NULL,'1001ZZ1000000NPH0ROY',NULL,'Y','10H140BOMRECORD_bchangeMaster',4,'general_btn','common','bchangeMaster_Add_Group',NULL,'Ctrl+Del','button_secondary',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO sm_appbutnregister(ts,dr,pk_btn,btncode,btnname,btndesc,resid,appid,templetid,isenable,pagecode,btnorder,btntype,btnarea,parent_code,iskeyfunc,keyboard,btncolor,pageareacode,pagedimension,displayarea,actionarea,groupdirection,disabled,visible,icon,btntip,btnname2,btnname3,btnname4,btnname5,btnname6,btntip2,btntip3,btntip4,btntip5,btntip6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DL1','Copy','复制',NULL,NULL,'1001ZZ1000000NPH0ROY',NULL,'Y','10H140BOMRECORD_bchangeMaster',5,'general_btn','common',NULL,NULL,'Alt+C','button_secondary',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO sm_appbutnregister(ts,dr,pk_btn,btncode,btnname,btndesc,resid,appid,templetid,isenable,pagecode,btnorder,btntype,btnarea,parent_code,iskeyfunc,keyboard,btncolor,pageareacode,pagedimension,displayarea,actionarea,groupdirection,disabled,visible,icon,btntip,btnname2,btnname3,btnname4,btnname5,btnname6,btntip2,btntip3,btntip4,btntip5,btntip6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DL2','Save','保存',NULL,NULL,'1001ZZ1000000NPH0ROY',NULL,'Y','10H140BOMRECORD_bchangeMaster',6,'general_btn','common',NULL,NULL,'Ctrl+S','button_main',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO sm_appbutnregister(ts,dr,pk_btn,btncode,btnname,btndesc,resid,appid,templetid,isenable,pagecode,btnorder,btntype,btnarea,parent_code,iskeyfunc,keyboard,btncolor,pageareacode,pagedimension,displayarea,actionarea,groupdirection,disabled,visible,icon,btntip,btnname2,btnname3,btnname4,btnname5,btnname6,btntip2,btntip3,btntip4,btntip5,btntip6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DL3','Cancel','取消',NULL,NULL,'1001ZZ1000000NPH0ROY',NULL,'Y','10H140BOMRECORD_bchangeMaster',7,'general_btn','common',NULL,NULL,'Alt+Q','button_secondary',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO sm_appbutnregister(ts,dr,pk_btn,btncode,btnname,btndesc,resid,appid,templetid,isenable,pagecode,btnorder,btntype,btnarea,parent_code,iskeyfunc,keyboard,btncolor,pageareacode,pagedimension,displayarea,actionarea,groupdirection,disabled,visible,icon,btntip,btnname2,btnname3,btnname4,btnname5,btnname6,btntip2,btntip3,btntip4,btntip5,btntip6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DL4','Refresh','',NULL,NULL,'1001ZZ1000000NPH0ROY',NULL,'Y','10H140BOMRECORD_bchangeMaster',8,'general_btn','common',NULL,NULL,'F5','button_secondary',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO opm_apimanager(isapidata,module_code,apiuri,code,name,pk_api,fk_parent,describe,docpath,dr,ts) VALUES('Y','1088','/nccloud/api/mmbd/bchangemanage/bchangeMaster/addBchangeMasterVO','10880315','新增BOM变更通知','1001ZZ1LCP000NPH2DLT','1001A11LCP000FREVR6M','新增BOM变更通知','/mmbd/bchangeMastermanage/BchangeMasterVO.md',0,'2025-08-26 16:03:57')
|
||||
/
|
||||
INSERT INTO opm_apimanager(isapidata,module_code,apiuri,code,name,pk_api,fk_parent,describe,docpath,dr,ts) VALUES('Y','1088','/nccloud/api/mmbd/bchangemanage/bchangeMaster/updateBchangeMasterVO','10880316','修改BOM变更通知','1001ZZ1LCP000NPH2DLU','1001A11LCP000FREVR6M','修改BOM变更通知','/mmbd/bchangeMastermanage/BchangeMasterVO.md',0,'2025-08-26 16:03:57')
|
||||
/
|
||||
INSERT INTO opm_apimanager(isapidata,module_code,apiuri,code,name,pk_api,fk_parent,describe,docpath,dr,ts) VALUES('Y','1088','/nccloud/api/mmbd/bchangemanage/bchangeMaster/deleteBchangeMasterVO','10880317','删除BOM变更通知','1001ZZ1LCP000NPH2DLV','1001A11LCP000FREVR6M','删除BOM变更通知','/mmbd/bchangeMastermanage/BchangeMasterVO.md',0,'2025-08-26 16:03:57')
|
||||
/
|
||||
INSERT INTO opm_apimanager(isapidata,module_code,apiuri,code,name,pk_api,fk_parent,describe,docpath,dr,ts) VALUES('Y','1088','/nccloud/api/mmbd/bchangemanage/bchangeMaster/queryBchangeMasterVO','10880318','查询BOM变更通知','1001ZZ1LCP000NPH2DLW','1001A11LCP000FREVR6M','查询BOM变更通知','/mmbd/bchangeMastermanage/BchangeMasterVO.md',0,'2025-08-26 16:03:57')
|
||||
/
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
INSERT INTO sm_appregister(ts,dr,pk_appregister,code,name,own_module,mountid,width,height,target_path,apptype,image_src,uselicense_load,orgtypecode,funtype,parent_id,isenable,pk_group,app_desc,scopeid,help_name,iscauserusable,mdid,source_app_code,resid,fun_property,iscopypage,pageresfile,creator,creationtime,modifier,modifiedtime,fastlaunchparam,fastlaunchurl,fastlaunchpagecode,componenttype,iscommon_configuration,gridnums,background_image,pc_appid,name2,name3,name4,name5,name6) VALUES('2025-08-26 16:02:58',0,'1001ZZ1000000NPH0ROY','10H140BOMRECORD','BOM变更通知','1014',NULL,1,1,NULL,1,'default','Y','BUSINESSUNIT00000000',0,'1001ZA100000000000E4','Y',NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','10H140BOMRECORD',NULL,0,'N',NULL,'1001A11000000DUZKRM0','2025-08-26 15:46:46','1001A11000000DUZKRM0','2025-08-26 16:03:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
INSERT INTO sm_apppage(ts,dr,pk_apppage,pagecode,pagename,pagedesc,pageurl,parent_id,parentcode,resid,isdefault,iscarddefault,creator,creationtime,modifier,modifiedtime,pagejsurl,pageresfile,styletype,mobpageresfile,isnewpage,transfersign,openpageparams) VALUES('2025-08-26 16:03:56',0,'1001ZZ1LCP000NPH2DKV','10H140BOMRECORD_bchangeMaster','主实体',NULL,'/nccloud/resources/mmbd/bchange/10H140BOMRECORD/main/index.html','1001ZZ1000000NPH0ROY','10H140BOMRECORD',NULL,'Y',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
INSERT INTO sm_appbutnregister(ts,dr,pk_btn,btncode,btnname,btndesc,resid,appid,templetid,isenable,pagecode,btnorder,btntype,btnarea,parent_code,iskeyfunc,keyboard,btncolor,pageareacode,pagedimension,displayarea,actionarea,groupdirection,disabled,visible,icon,btntip,btnname2,btnname3,btnname4,btnname5,btnname6,btntip2,btntip3,btntip4,btntip5,btntip6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DKX','bchangeMaster_Add_Group','',NULL,NULL,'1001ZZ1000000NPH0ROY',NULL,'Y','10H140BOMRECORD_bchangeMaster',1,'buttongroup','common',NULL,NULL,'','button_secondary',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO sm_appbutnregister(ts,dr,pk_btn,btncode,btnname,btndesc,resid,appid,templetid,isenable,pagecode,btnorder,btntype,btnarea,parent_code,iskeyfunc,keyboard,btncolor,pageareacode,pagedimension,displayarea,actionarea,groupdirection,disabled,visible,icon,btntip,btnname2,btnname3,btnname4,btnname5,btnname6,btntip2,btntip3,btntip4,btntip5,btntip6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DKY','Add','新增',NULL,NULL,'1001ZZ1000000NPH0ROY',NULL,'Y','10H140BOMRECORD_bchangeMaster',2,'general_btn','common','bchangeMaster_Add_Group',NULL,'Ctrl+/','button_main',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO sm_appbutnregister(ts,dr,pk_btn,btncode,btnname,btndesc,resid,appid,templetid,isenable,pagecode,btnorder,btntype,btnarea,parent_code,iskeyfunc,keyboard,btncolor,pageareacode,pagedimension,displayarea,actionarea,groupdirection,disabled,visible,icon,btntip,btnname2,btnname3,btnname4,btnname5,btnname6,btntip2,btntip3,btntip4,btntip5,btntip6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DKZ','Edit','修改',NULL,NULL,'1001ZZ1000000NPH0ROY',NULL,'Y','10H140BOMRECORD_bchangeMaster',3,'general_btn','common','bchangeMaster_Add_Group',NULL,'Alt+P','button_secondary',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO sm_appbutnregister(ts,dr,pk_btn,btncode,btnname,btndesc,resid,appid,templetid,isenable,pagecode,btnorder,btntype,btnarea,parent_code,iskeyfunc,keyboard,btncolor,pageareacode,pagedimension,displayarea,actionarea,groupdirection,disabled,visible,icon,btntip,btnname2,btnname3,btnname4,btnname5,btnname6,btntip2,btntip3,btntip4,btntip5,btntip6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DL0','Delete','删除',NULL,NULL,'1001ZZ1000000NPH0ROY',NULL,'Y','10H140BOMRECORD_bchangeMaster',4,'general_btn','common','bchangeMaster_Add_Group',NULL,'Ctrl+Del','button_secondary',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO sm_appbutnregister(ts,dr,pk_btn,btncode,btnname,btndesc,resid,appid,templetid,isenable,pagecode,btnorder,btntype,btnarea,parent_code,iskeyfunc,keyboard,btncolor,pageareacode,pagedimension,displayarea,actionarea,groupdirection,disabled,visible,icon,btntip,btnname2,btnname3,btnname4,btnname5,btnname6,btntip2,btntip3,btntip4,btntip5,btntip6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DL1','Copy','复制',NULL,NULL,'1001ZZ1000000NPH0ROY',NULL,'Y','10H140BOMRECORD_bchangeMaster',5,'general_btn','common',NULL,NULL,'Alt+C','button_secondary',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO sm_appbutnregister(ts,dr,pk_btn,btncode,btnname,btndesc,resid,appid,templetid,isenable,pagecode,btnorder,btntype,btnarea,parent_code,iskeyfunc,keyboard,btncolor,pageareacode,pagedimension,displayarea,actionarea,groupdirection,disabled,visible,icon,btntip,btnname2,btnname3,btnname4,btnname5,btnname6,btntip2,btntip3,btntip4,btntip5,btntip6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DL2','Save','保存',NULL,NULL,'1001ZZ1000000NPH0ROY',NULL,'Y','10H140BOMRECORD_bchangeMaster',6,'general_btn','common',NULL,NULL,'Ctrl+S','button_main',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO sm_appbutnregister(ts,dr,pk_btn,btncode,btnname,btndesc,resid,appid,templetid,isenable,pagecode,btnorder,btntype,btnarea,parent_code,iskeyfunc,keyboard,btncolor,pageareacode,pagedimension,displayarea,actionarea,groupdirection,disabled,visible,icon,btntip,btnname2,btnname3,btnname4,btnname5,btnname6,btntip2,btntip3,btntip4,btntip5,btntip6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DL3','Cancel','取消',NULL,NULL,'1001ZZ1000000NPH0ROY',NULL,'Y','10H140BOMRECORD_bchangeMaster',7,'general_btn','common',NULL,NULL,'Alt+Q','button_secondary',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO sm_appbutnregister(ts,dr,pk_btn,btncode,btnname,btndesc,resid,appid,templetid,isenable,pagecode,btnorder,btntype,btnarea,parent_code,iskeyfunc,keyboard,btncolor,pageareacode,pagedimension,displayarea,actionarea,groupdirection,disabled,visible,icon,btntip,btnname2,btnname3,btnname4,btnname5,btnname6,btntip2,btntip3,btntip4,btntip5,btntip6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DL4','Refresh','',NULL,NULL,'1001ZZ1000000NPH0ROY',NULL,'Y','10H140BOMRECORD_bchangeMaster',8,'general_btn','common',NULL,NULL,'F5','button_secondary',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
INSERT INTO opm_apimanager(isapidata,module_code,apiuri,code,name,pk_api,fk_parent,describe,docpath,dr,ts) VALUES('Y','1088','/nccloud/api/mmbd/bchangemanage/bchangeMaster/addBchangeMasterVO','10880315','新增BOM变更通知','1001ZZ1LCP000NPH2DLT','1001A11LCP000FREVR6M','新增BOM变更通知','/mmbd/bchangeMastermanage/BchangeMasterVO.md',0,'2025-08-26 16:03:57')
|
||||
/
|
||||
INSERT INTO opm_apimanager(isapidata,module_code,apiuri,code,name,pk_api,fk_parent,describe,docpath,dr,ts) VALUES('Y','1088','/nccloud/api/mmbd/bchangemanage/bchangeMaster/updateBchangeMasterVO','10880316','修改BOM变更通知','1001ZZ1LCP000NPH2DLU','1001A11LCP000FREVR6M','修改BOM变更通知','/mmbd/bchangeMastermanage/BchangeMasterVO.md',0,'2025-08-26 16:03:57')
|
||||
/
|
||||
INSERT INTO opm_apimanager(isapidata,module_code,apiuri,code,name,pk_api,fk_parent,describe,docpath,dr,ts) VALUES('Y','1088','/nccloud/api/mmbd/bchangemanage/bchangeMaster/deleteBchangeMasterVO','10880317','删除BOM变更通知','1001ZZ1LCP000NPH2DLV','1001A11LCP000FREVR6M','删除BOM变更通知','/mmbd/bchangeMastermanage/BchangeMasterVO.md',0,'2025-08-26 16:03:57')
|
||||
/
|
||||
INSERT INTO opm_apimanager(isapidata,module_code,apiuri,code,name,pk_api,fk_parent,describe,docpath,dr,ts) VALUES('Y','1088','/nccloud/api/mmbd/bchangemanage/bchangeMaster/queryBchangeMasterVO','10880318','查询BOM变更通知','1001ZZ1LCP000NPH2DLW','1001A11LCP000FREVR6M','查询BOM变更通知','/mmbd/bchangeMastermanage/BchangeMasterVO.md',0,'2025-08-26 16:03:57')
|
||||
/
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
<?xml version="1.0" encoding='gb2312'?>
|
||||
<items docType="SDP_SCRIPT_ITEM">
|
||||
<item>
|
||||
<itemKey>sm_appmenuitem</itemKey>
|
||||
<itemName>应用菜单项注册</itemName>
|
||||
<itemRule>sm_appmenuitem</itemRule>
|
||||
<sysField></sysField>
|
||||
<corpField></corpField>
|
||||
<grpField></grpField>
|
||||
<fixedWhere>
|
||||
menuitemcode in('10143699')
|
||||
</fixedWhere>
|
||||
</item>
|
||||
<item>
|
||||
<itemKey>sm_appregister</itemKey>
|
||||
<itemName>应用注册</itemName>
|
||||
<itemRule>sm_appregister</itemRule>
|
||||
<sysField></sysField>
|
||||
<corpField></corpField>
|
||||
<grpField></grpField>
|
||||
<fixedWhere>
|
||||
code in ('10H140BOMRECORD')
|
||||
</fixedWhere>
|
||||
</item>
|
||||
<item>
|
||||
<itemKey>opm_apimanager</itemKey>
|
||||
<itemName>OpenAPI</itemName>
|
||||
<itemRule>opm_apimanager</itemRule>
|
||||
<sysField></sysField>
|
||||
<corpField></corpField>
|
||||
<grpField></grpField>
|
||||
<fixedWhere>
|
||||
APIURI in('/nccloud/api/mmbd/bchangemanage/bchangeMaster/addBchangeMasterVO','/nccloud/api/mmbd/bchangemanage/bchangeMaster/updateBchangeMasterVO','/nccloud/api/mmbd/bchangemanage/bchangeMaster/deleteBchangeMasterVO','/nccloud/api/mmbd/bchangemanage/bchangeMaster/queryBchangeMasterVO')
|
||||
</fixedWhere>
|
||||
</item>
|
||||
<item>
|
||||
<itemKey>pub_page_templet</itemKey>
|
||||
<itemName>单据模板</itemName>
|
||||
<itemRule>pub_page_templet</itemRule>
|
||||
<sysField></sysField>
|
||||
<corpField></corpField>
|
||||
<grpField></grpField>
|
||||
<fixedWhere>
|
||||
appcode in ('10H140BOMRECORD')
|
||||
</fixedWhere>
|
||||
</item>
|
||||
</items>
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
create table MMBD_BCHANGEMASTER (pk_org_v varchar(20) null /*组织多版本*/,
|
||||
pk_group varchar(20) null /*pk_group*/,
|
||||
pk_org varchar(20) null /*pk_org*/,
|
||||
after_num varchar(50) null /*变更后数量*/,
|
||||
before_num varchar(50) null /*变更前数量*/,
|
||||
child_no varchar(50) null /*子项编码*/,
|
||||
parent_no varchar(50) null /*父项编码*/,
|
||||
billno varchar(50) null /*施工单号*/,
|
||||
name varchar(50) null /*name*/,
|
||||
code varchar(50) null /*code*/,
|
||||
pk_bchangemaster char(20) not null /*主键*/,
|
||||
ts char(19) default to_char(current_timestamp, 'yyyy-mm-dd hh24:mi:ss') not null /*ts*/,
|
||||
dr smallint default 0 not null /*dr*/,
|
||||
constraint MMBD_BCHANGEMASTER_PK primary key (pk_bchangemaster)
|
||||
)
|
||||
|
||||
/
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
create table MMBD_BCHANGEMASTER (pk_org_v varchar2(20) null /*组织多版本*/,
|
||||
pk_group varchar2(20) null /*pk_group*/,
|
||||
pk_org varchar2(20) null /*pk_org*/,
|
||||
after_num varchar2(50) null /*变更后数量*/,
|
||||
before_num varchar2(50) null /*变更前数量*/,
|
||||
child_no varchar2(50) null /*子项编码*/,
|
||||
parent_no varchar2(50) null /*父项编码*/,
|
||||
billno varchar2(50) null /*施工单号*/,
|
||||
name varchar2(50) null /*name*/,
|
||||
code varchar2(50) null /*code*/,
|
||||
pk_bchangemaster char(20) not null /*主键*/,
|
||||
ts char(19) default to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') not null /*ts*/,
|
||||
dr integer default 0 not null /*dr*/,
|
||||
constraint MMBD_BCHANGEMASTER_PK primary key (pk_bchangemaster)
|
||||
)
|
||||
|
||||
/
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
create table mmbd_bchangemaster (pk_org_v nvarchar(20) null /*组织多版本*/,
|
||||
pk_group nvarchar(20) null /*pk_group*/,
|
||||
pk_org nvarchar(20) null /*pk_org*/,
|
||||
after_num nvarchar(50) null /*变更后数量*/,
|
||||
before_num nvarchar(50) null /*变更前数量*/,
|
||||
child_no nvarchar(50) null /*子项编码*/,
|
||||
parent_no nvarchar(50) null /*父项编码*/,
|
||||
billno nvarchar(50) null /*施工单号*/,
|
||||
name nvarchar(50) null /*name*/,
|
||||
code nvarchar(50) null /*code*/,
|
||||
pk_bchangemaster nchar(20) not null /*主键*/,
|
||||
ts nchar(19) default convert(char(19),getdate(),20) not null /*ts*/,
|
||||
dr smallint default 0 not null /*dr*/,
|
||||
constraint mmbd_bchangemaster_PK primary key (pk_bchangemaster)
|
||||
)
|
||||
|
||||
/
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
opm_apimanager
|
||||
pk_api
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
pub_area
|
||||
pk_area,name
|
||||
1001ZZ1LCP000NPH2DL5,主实体_查询区
|
||||
1001ZZ1LCP000NPH2DL6,主实体
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
pub_form_property
|
||||
pk_form_property,hintmessage,tooltips,hyperlinkname,label
|
||||
1001ZZ1LCP000NPH2DLH,null,null,null,pk_group
|
||||
1001ZZ1LCP000NPH2DLI,null,null,null,主键
|
||||
1001ZZ1LCP000NPH2DLJ,null,null,null,pk_org
|
||||
1001ZZ1LCP000NPH2DLK,null,null,null,code
|
||||
1001ZZ1LCP000NPH2DLL,null,null,null,name
|
||||
1001ZZ1LCP000NPH2DLM,null,null,null,施工单号
|
||||
1001ZZ1LCP000NPH2DLN,null,null,null,父项编码
|
||||
1001ZZ1LCP000NPH2DLO,null,null,null,子项编码
|
||||
1001ZZ1LCP000NPH2DLP,null,null,null,变更前数量
|
||||
1001ZZ1LCP000NPH2DLQ,null,null,null,变更后数量
|
||||
1001ZZ1LCP000NPH2DLR,null,null,null,组织多版本
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
pub_page_templet
|
||||
pk_page_templet
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
pub_query_property
|
||||
pk_query_property,label,hintmessage,tooltips
|
||||
1001ZZ1LCP000NPH2DL7,pk_org,null,null
|
||||
1001ZZ1LCP000NPH2DL8,code,null,null
|
||||
1001ZZ1LCP000NPH2DL9,施工单号,null,null
|
||||
1001ZZ1LCP000NPH2DLA,name,null,null
|
||||
1001ZZ1LCP000NPH2DLB,父项编码,null,null
|
||||
1001ZZ1LCP000NPH2DLC,子项编码,null,null
|
||||
1001ZZ1LCP000NPH2DLD,变更前数量,null,null
|
||||
1001ZZ1LCP000NPH2DLE,变更后数量,null,null
|
||||
1001ZZ1LCP000NPH2DLF,pk_group,null,null
|
||||
1001ZZ1LCP000NPH2DLG,组织多版本,null,null
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
sm_appbutnregister
|
||||
pk_btn,btnname,btntip
|
||||
1001ZZ1LCP000NPH2DKX,,null
|
||||
1001ZZ1LCP000NPH2DKY,新增,null
|
||||
1001ZZ1LCP000NPH2DKZ,修改,null
|
||||
1001ZZ1LCP000NPH2DL0,删除,null
|
||||
1001ZZ1LCP000NPH2DL1,复制,null
|
||||
1001ZZ1LCP000NPH2DL2,保存,null
|
||||
1001ZZ1LCP000NPH2DL3,取消,null
|
||||
1001ZZ1LCP000NPH2DL4,,null
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
sm_appmenuitem
|
||||
pk_menuitem,menuitemname
|
||||
1001ZZ1000000NPH0ROZ,BOM变更通知
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
sm_apppage
|
||||
pk_apppage
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
sm_appregister
|
||||
pk_appregister,name
|
||||
1001ZZ1000000NPH0ROY,BOM变更通知
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
INSERT INTO sm_appmenuitem(ts,dr,app_image,is_cloud_app,floor,menuorder,pk_menuitem,menuitemcode,menuitemname,menudes,appcode,appid,pk_menu,parentcode,resid,pk_group,image_src,menuitemname2,menuitemname3,menuitemname4,menuitemname5,menuitemname6) VALUES('2025-08-26 16:02:58',0,NULL,NULL,NULL,NULL,'1001ZZ1000000NPH0ROZ','10143699','BOM变更通知',NULL,'10H140BOMRECORD','1001ZZ1000000NPH0ROY','1004Z510000000000FFL','101436',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
INSERT INTO pub_page_templet(ts,dr,pk_page_templet,code,name,resid,creator,creationtime,modifier,modifiedtime,templetdesc,isdefault,parentid,pagecode,clazz,metaid,headcode,appcode,appid,resmodule,pk_group,pk_org,layout,pagestyle,jscontent,norequireguide,templatelevel,source_appcode) VALUES('2025-08-26 15:47:02',0,'1001ZZ1LCP000NPH0RP2','10H140BOMRECORD_bchangeMaster','主实体',NULL,NULL,NULL,NULL,NULL,NULL,'Y','root','10H140BOMRECORD_bchangeMaster','nc.vo.bchange.bchange.BchangeMasterVO',NULL,'bchangeMasterTable','10H140BOMRECORD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL)
|
||||
/
|
||||
Binary file not shown.
|
|
@ -0,0 +1,4 @@
|
|||
INSERT INTO pub_area(ts,dr,pk_area,code,name,areatype,associatedtablayout,templetid,creator,modifier,creationtime,modifiedtime,resid,relationcode,areastatus,pagination,clazz,metaid,metaname,associatedtab,position,metaspace,areadesc,tabheadcode,isunfold,isgrandson,areahide,isclosequickquery,pagesize,mainnestareacode,columnnum,icontype,isuserset,corerelation,sumfield,name2,name3,name4,name5,name6) VALUES('2025-08-26 15:47:03',0,'1001ZZ1LCP000NPH0RPB','bchangeMasterQuery','主实体_查询区',0,'horizontal','1001ZZ1LCP000NPH0RP2',NULL,NULL,NULL,NULL,NULL,NULL,'browse','','nc.vo.bchange.bchange.BchangeMasterVO','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','主实体',NULL,0,'bchange.bchangeMaster',NULL,NULL,NULL,'N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_area(ts,dr,pk_area,code,name,areatype,associatedtablayout,templetid,creator,modifier,creationtime,modifiedtime,resid,relationcode,areastatus,pagination,clazz,metaid,metaname,associatedtab,position,metaspace,areadesc,tabheadcode,isunfold,isgrandson,areahide,isclosequickquery,pagesize,mainnestareacode,columnnum,icontype,isuserset,corerelation,sumfield,name2,name3,name4,name5,name6) VALUES('2025-08-26 15:47:03',0,'1001ZZ1LCP000NPH0RPC','bchangeMasterTable','主实体',2,'horizontal','1001ZZ1LCP000NPH0RP2',NULL,NULL,NULL,NULL,NULL,NULL,'browse','true','nc.vo.bchange.bchange.BchangeMasterVO','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','主实体',NULL,1,'bchange.bchangeMaster',NULL,NULL,NULL,'N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH0RPD',NULL,'1001ZZ1LCP000NPH0RPB','pk_org','Y','pk_org','pk_org',120,'Y','N','N','N','N',20,NULL,NULL,NULL,1,'=','等于@',NULL,1,'refpk',204,'组织(包含全局)(所有)','Y','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N','uapbd/refer/org/OrgWithGlobalAllDataTreeRef/index','uap.org.name','0001Z01000000001V017,code=N','refer','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','359aa1ba-dc01-4ad8-9a5d-b969fb99d2d9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH0RPE',NULL,'1001ZZ1LCP000NPH0RPB','code','Y','code','code',120,'Y','N','N','N','N',50,NULL,NULL,NULL,2,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','a3dfd781-c3ac-4407-bfff-b4ac4cca7129',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH0RPF',NULL,'1001ZZ1LCP000NPH0RPB','施工单号','Y','billno','billno',120,'Y','N','N','N','N',50,NULL,NULL,NULL,3,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','b8695ab8-d5c3-424f-9022-9ba76c0b4a63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH0RPG',NULL,'1001ZZ1LCP000NPH0RPB','name','Y','name','name',120,'Y','N','N','N','N',50,NULL,NULL,NULL,4,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','7fa28f22-ab96-4b0b-a866-0ac2e1f5dbd9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH0RPH',NULL,'1001ZZ1LCP000NPH0RPB','父项编码','Y','parent_no','parent_no',120,'N','N','N','N','N',50,NULL,NULL,NULL,5,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','45e03717-5464-42e7-87de-08aae8a6eef9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH0RPI',NULL,'1001ZZ1LCP000NPH0RPB','子项编码','Y','child_no','child_no',120,'N','N','N','N','N',50,NULL,NULL,NULL,6,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','3cee5d9d-5b5c-4ed4-bd8d-7dc258d56c32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH0RPJ',NULL,'1001ZZ1LCP000NPH0RPB','变更前数量','Y','before_num','before_num',120,'N','N','N','N','N',50,NULL,NULL,NULL,7,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','a311677d-97d8-4c0c-ab3b-613b0860125a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH0RPK',NULL,'1001ZZ1LCP000NPH0RPB','变更后数量','Y','after_num','after_num',120,'N','N','N','N','N',50,NULL,NULL,NULL,8,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','bbc6b41c-a5c7-4974-9838-063cc09ed425',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH0RPL',NULL,'1001ZZ1LCP000NPH0RPB','pk_group','Y','pk_group','pk_group',120,'N','N','N','N','N',20,NULL,NULL,NULL,10,'=','等于@',NULL,1,'refpk',204,'集团','Y','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N','uap/refer/riart/groupTreeRef/index','uap.group.name','0001Z010000000000ZKS,code=N','refer','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','94d2a5b9-038f-41ea-ac0d-d3cca0616609',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH0RPM',NULL,'1001ZZ1LCP000NPH0RPB','组织多版本','Y','pk_org_v','pk_org_v',120,'N','N','N','N','N',20,NULL,NULL,NULL,11,'=','等于@',NULL,1,'refpk',204,'业务单元版本','Y','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N','uapbd/refer/orgv/BusinessUnitVersionTreeRef/index','uap.org_v.name','0001Z01000000002V000,code=N','refer','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','31a1d6a9-18cf-4a36-a690-5f9986886950',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,'uap/refer/riart/groupTreeRef/index',NULL,NULL,NULL,'N','N','N',20,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,204,'0001Z010000000000ZKS,code=N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','uap.group.name','refer','集团','3b6dd171-2900-47f3-bfbe-41e4483a2a65',NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','94d2a5b9-038f-41ea-ac0d-d3cca0616609',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH0RPN','1001ZZ1LCP000NPH0RPC','pk_group','pk_group','pk_group',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'Y','N','N',20,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','145ab806-6c2e-4df6-a42b-1dc0f6cbd268',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH0RPO','1001ZZ1LCP000NPH0RPC','主键','pk_bchangemaster','pk_bchangemaster',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,'uapbd/refer/org/OrgWithGlobalAllDataTreeRef/index',NULL,NULL,NULL,'N','N','Y',20,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,204,'0001Z01000000001V017,code=N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','uap.org.name','refer','组织(包含全局)(所有)','985be8a4-3a36-4778-8afe-2d8ed3902659',NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','359aa1ba-dc01-4ad8-9a5d-b969fb99d2d9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH0RPP','1001ZZ1LCP000NPH0RPC','pk_org','pk_org','pk_org',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','a3dfd781-c3ac-4407-bfff-b4ac4cca7129',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH0RPQ','1001ZZ1LCP000NPH0RPC','code','code','code',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','7fa28f22-ab96-4b0b-a866-0ac2e1f5dbd9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH0RPR','1001ZZ1LCP000NPH0RPC','name','name','name',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','b8695ab8-d5c3-424f-9022-9ba76c0b4a63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH0RPS','1001ZZ1LCP000NPH0RPC','施工单号','billno','billno',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','45e03717-5464-42e7-87de-08aae8a6eef9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH0RPT','1001ZZ1LCP000NPH0RPC','父项编码','parent_no','parent_no',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,6,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','3cee5d9d-5b5c-4ed4-bd8d-7dc258d56c32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH0RPU','1001ZZ1LCP000NPH0RPC','子项编码','child_no','child_no',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,7,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','a311677d-97d8-4c0c-ab3b-613b0860125a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH0RPV','1001ZZ1LCP000NPH0RPC','变更前数量','before_num','before_num',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,8,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','bbc6b41c-a5c7-4974-9838-063cc09ed425',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH0RPW','1001ZZ1LCP000NPH0RPC','变更后数量','after_num','after_num',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,'uapbd/refer/orgv/BusinessUnitVersionTreeRef/index',NULL,NULL,NULL,'N','N','N',20,NULL,NULL,NULL,NULL,NULL,NULL,9,NULL,204,'0001Z01000000002V000,code=N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','uap.org_v.name','refer','业务单元版本','da7bba89-9a59-42d6-a262-c13ef459dbd9',NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','31a1d6a9-18cf-4a36-a690-5f9986886950',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH0RPX','1001ZZ1LCP000NPH0RPC','组织多版本','pk_org_v','pk_org_v',120,NULL)
|
||||
/
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,2 @@
|
|||
INSERT INTO pub_page_templet(ts,dr,pk_page_templet,code,name,resid,creator,creationtime,modifier,modifiedtime,templetdesc,isdefault,parentid,pagecode,clazz,metaid,headcode,appcode,appid,resmodule,pk_group,pk_org,layout,pagestyle,jscontent,norequireguide,templatelevel,source_appcode) VALUES('2025-08-26 16:02:37',0,'1001ZZ1LCP000NPH2DJT','10H140BOMRECORD_bchangeMaster','主实体',NULL,NULL,NULL,NULL,NULL,NULL,'Y','root','10H140BOMRECORD_bchangeMaster','nc.vo.bchange.bchange.BchangeMasterVO',NULL,'bchangeMasterTable','10H140BOMRECORD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL)
|
||||
/
|
||||
Binary file not shown.
|
|
@ -0,0 +1,4 @@
|
|||
INSERT INTO pub_area(ts,dr,pk_area,code,name,areatype,associatedtablayout,templetid,creator,modifier,creationtime,modifiedtime,resid,relationcode,areastatus,pagination,clazz,metaid,metaname,associatedtab,position,metaspace,areadesc,tabheadcode,isunfold,isgrandson,areahide,isclosequickquery,pagesize,mainnestareacode,columnnum,icontype,isuserset,corerelation,sumfield,name2,name3,name4,name5,name6) VALUES('2025-08-26 16:02:40',0,'1001ZZ1LCP000NPH2DK2','bchangeMasterQuery','主实体_查询区',0,'horizontal','1001ZZ1LCP000NPH2DJT',NULL,NULL,NULL,NULL,NULL,NULL,'browse','','nc.vo.bchange.bchange.BchangeMasterVO','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','主实体',NULL,0,'bchange.bchangeMaster',NULL,NULL,NULL,'N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_area(ts,dr,pk_area,code,name,areatype,associatedtablayout,templetid,creator,modifier,creationtime,modifiedtime,resid,relationcode,areastatus,pagination,clazz,metaid,metaname,associatedtab,position,metaspace,areadesc,tabheadcode,isunfold,isgrandson,areahide,isclosequickquery,pagesize,mainnestareacode,columnnum,icontype,isuserset,corerelation,sumfield,name2,name3,name4,name5,name6) VALUES('2025-08-26 16:02:42',0,'1001ZZ1LCP000NPH2DK3','bchangeMasterTable','主实体',2,'horizontal','1001ZZ1LCP000NPH2DJT',NULL,NULL,NULL,NULL,NULL,NULL,'browse','true','nc.vo.bchange.bchange.BchangeMasterVO','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','主实体',NULL,1,'bchange.bchangeMaster',NULL,NULL,NULL,'N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DK4',NULL,'1001ZZ1LCP000NPH2DK2','pk_org','Y','pk_org','pk_org',120,'Y','N','N','N','N',20,NULL,NULL,NULL,1,'=','等于@',NULL,1,'refpk',204,'组织(包含全局)(所有)','Y','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N','uapbd/refer/org/OrgWithGlobalAllDataTreeRef/index','uap.org.name','0001Z01000000001V017,code=N','refer','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','359aa1ba-dc01-4ad8-9a5d-b969fb99d2d9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DK5',NULL,'1001ZZ1LCP000NPH2DK2','code','Y','code','code',120,'Y','N','N','N','N',50,NULL,NULL,NULL,2,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','a3dfd781-c3ac-4407-bfff-b4ac4cca7129',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DK6',NULL,'1001ZZ1LCP000NPH2DK2','施工单号','Y','billno','billno',120,'Y','N','N','N','N',50,NULL,NULL,NULL,3,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','b8695ab8-d5c3-424f-9022-9ba76c0b4a63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DK7',NULL,'1001ZZ1LCP000NPH2DK2','name','Y','name','name',120,'Y','N','N','N','N',50,NULL,NULL,NULL,4,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','7fa28f22-ab96-4b0b-a866-0ac2e1f5dbd9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DK8',NULL,'1001ZZ1LCP000NPH2DK2','父项编码','Y','parent_no','parent_no',120,'N','N','N','N','N',50,NULL,NULL,NULL,5,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','45e03717-5464-42e7-87de-08aae8a6eef9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DK9',NULL,'1001ZZ1LCP000NPH2DK2','子项编码','Y','child_no','child_no',120,'N','N','N','N','N',50,NULL,NULL,NULL,6,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','3cee5d9d-5b5c-4ed4-bd8d-7dc258d56c32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DKA',NULL,'1001ZZ1LCP000NPH2DK2','变更前数量','Y','before_num','before_num',120,'N','N','N','N','N',50,NULL,NULL,NULL,7,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','a311677d-97d8-4c0c-ab3b-613b0860125a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DKB',NULL,'1001ZZ1LCP000NPH2DK2','变更后数量','Y','after_num','after_num',120,'N','N','N','N','N',50,NULL,NULL,NULL,8,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','bbc6b41c-a5c7-4974-9838-063cc09ed425',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DKC',NULL,'1001ZZ1LCP000NPH2DK2','pk_group','Y','pk_group','pk_group',120,'N','N','N','N','N',20,NULL,NULL,NULL,10,'=','等于@',NULL,1,'refpk',204,'集团','Y','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N','uap/refer/riart/groupTreeRef/index','uap.group.name','0001Z010000000000ZKS,code=N','refer','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','94d2a5b9-038f-41ea-ac0d-d3cca0616609',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DKD',NULL,'1001ZZ1LCP000NPH2DK2','组织多版本','Y','pk_org_v','pk_org_v',120,'N','N','N','N','N',20,NULL,NULL,NULL,11,'=','等于@',NULL,1,'refpk',204,'业务单元版本','Y','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N','uapbd/refer/orgv/BusinessUnitVersionTreeRef/index','uap.org_v.name','0001Z01000000002V000,code=N','refer','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','31a1d6a9-18cf-4a36-a690-5f9986886950',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,'uap/refer/riart/groupTreeRef/index',NULL,NULL,NULL,'N','N','N',20,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,204,'0001Z010000000000ZKS,code=N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','uap.group.name','refer','集团','3b6dd171-2900-47f3-bfbe-41e4483a2a65',NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','94d2a5b9-038f-41ea-ac0d-d3cca0616609',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DKE','1001ZZ1LCP000NPH2DK3','pk_group','pk_group','pk_group',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'Y','N','N',20,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','145ab806-6c2e-4df6-a42b-1dc0f6cbd268',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DKF','1001ZZ1LCP000NPH2DK3','主键','pk_bchangemaster','pk_bchangemaster',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,'uapbd/refer/org/OrgWithGlobalAllDataTreeRef/index',NULL,NULL,NULL,'N','N','Y',20,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,204,'0001Z01000000001V017,code=N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','uap.org.name','refer','组织(包含全局)(所有)','985be8a4-3a36-4778-8afe-2d8ed3902659',NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','359aa1ba-dc01-4ad8-9a5d-b969fb99d2d9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DKG','1001ZZ1LCP000NPH2DK3','pk_org','pk_org','pk_org',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','a3dfd781-c3ac-4407-bfff-b4ac4cca7129',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DKH','1001ZZ1LCP000NPH2DK3','code','code','code',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','7fa28f22-ab96-4b0b-a866-0ac2e1f5dbd9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DKI','1001ZZ1LCP000NPH2DK3','name','name','name',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','b8695ab8-d5c3-424f-9022-9ba76c0b4a63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DKJ','1001ZZ1LCP000NPH2DK3','施工单号','billno','billno',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','45e03717-5464-42e7-87de-08aae8a6eef9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DKK','1001ZZ1LCP000NPH2DK3','父项编码','parent_no','parent_no',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,6,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','3cee5d9d-5b5c-4ed4-bd8d-7dc258d56c32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DKL','1001ZZ1LCP000NPH2DK3','子项编码','child_no','child_no',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,7,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','a311677d-97d8-4c0c-ab3b-613b0860125a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DKM','1001ZZ1LCP000NPH2DK3','变更前数量','before_num','before_num',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,8,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','bbc6b41c-a5c7-4974-9838-063cc09ed425',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DKN','1001ZZ1LCP000NPH2DK3','变更后数量','after_num','after_num',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,'uapbd/refer/orgv/BusinessUnitVersionTreeRef/index',NULL,NULL,NULL,'N','N','N',20,NULL,NULL,NULL,NULL,NULL,NULL,9,NULL,204,'0001Z01000000002V000,code=N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','uap.org_v.name','refer','业务单元版本','da7bba89-9a59-42d6-a262-c13ef459dbd9',NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','31a1d6a9-18cf-4a36-a690-5f9986886950',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DKO','1001ZZ1LCP000NPH2DK3','组织多版本','pk_org_v','pk_org_v',120,NULL)
|
||||
/
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,2 @@
|
|||
INSERT INTO pub_page_templet(ts,dr,pk_page_templet,code,name,resid,creator,creationtime,modifier,modifiedtime,templetdesc,isdefault,parentid,pagecode,clazz,metaid,headcode,appcode,appid,resmodule,pk_group,pk_org,layout,pagestyle,jscontent,norequireguide,templatelevel,source_appcode) VALUES('2025-08-26 16:03:56',0,'1001ZZ1LCP000NPH2DKW','10H140BOMRECORD_bchangeMaster','主实体',NULL,NULL,NULL,NULL,NULL,NULL,'Y','root','10H140BOMRECORD_bchangeMaster','nc.vo.bchange.bchange.BchangeMasterVO',NULL,'bchangeMasterTable','10H140BOMRECORD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL)
|
||||
/
|
||||
Binary file not shown.
|
|
@ -0,0 +1,4 @@
|
|||
INSERT INTO pub_area(ts,dr,pk_area,code,name,areatype,associatedtablayout,templetid,creator,modifier,creationtime,modifiedtime,resid,relationcode,areastatus,pagination,clazz,metaid,metaname,associatedtab,position,metaspace,areadesc,tabheadcode,isunfold,isgrandson,areahide,isclosequickquery,pagesize,mainnestareacode,columnnum,icontype,isuserset,corerelation,sumfield,name2,name3,name4,name5,name6) VALUES('2025-08-26 16:03:56',0,'1001ZZ1LCP000NPH2DL5','bchangeMasterQuery','主实体_查询区',0,'horizontal','1001ZZ1LCP000NPH2DKW',NULL,NULL,NULL,NULL,NULL,NULL,'browse','','nc.vo.bchange.bchange.BchangeMasterVO','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','主实体',NULL,0,'uapbd.bchangeMaster',NULL,NULL,NULL,'N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_area(ts,dr,pk_area,code,name,areatype,associatedtablayout,templetid,creator,modifier,creationtime,modifiedtime,resid,relationcode,areastatus,pagination,clazz,metaid,metaname,associatedtab,position,metaspace,areadesc,tabheadcode,isunfold,isgrandson,areahide,isclosequickquery,pagesize,mainnestareacode,columnnum,icontype,isuserset,corerelation,sumfield,name2,name3,name4,name5,name6) VALUES('2025-08-26 16:03:57',0,'1001ZZ1LCP000NPH2DL6','bchangeMasterTable','主实体',2,'horizontal','1001ZZ1LCP000NPH2DKW',NULL,NULL,NULL,NULL,NULL,NULL,'browse','true','nc.vo.bchange.bchange.BchangeMasterVO','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','主实体',NULL,1,'uapbd.bchangeMaster',NULL,NULL,NULL,'N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DL7',NULL,'1001ZZ1LCP000NPH2DL5','pk_org','Y','pk_org','pk_org',120,'Y','N','N','N','N',20,NULL,NULL,NULL,1,'=','等于@',NULL,1,'refpk',204,'组织(包含全局)(所有)','Y','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N','uapbd/refer/org/OrgWithGlobalAllDataTreeRef/index','uap.org.name','0001Z01000000001V017,code=N','refer','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','359aa1ba-dc01-4ad8-9a5d-b969fb99d2d9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DL8',NULL,'1001ZZ1LCP000NPH2DL5','code','Y','code','code',120,'Y','N','N','N','N',50,NULL,NULL,NULL,2,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','a3dfd781-c3ac-4407-bfff-b4ac4cca7129',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DL9',NULL,'1001ZZ1LCP000NPH2DL5','施工单号','Y','billno','billno',120,'Y','N','N','N','N',50,NULL,NULL,NULL,3,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','b8695ab8-d5c3-424f-9022-9ba76c0b4a63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DLA',NULL,'1001ZZ1LCP000NPH2DL5','name','Y','name','name',120,'Y','N','N','N','N',50,NULL,NULL,NULL,4,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','7fa28f22-ab96-4b0b-a866-0ac2e1f5dbd9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DLB',NULL,'1001ZZ1LCP000NPH2DL5','父项编码','Y','parent_no','parent_no',120,'N','N','N','N','N',50,NULL,NULL,NULL,5,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','45e03717-5464-42e7-87de-08aae8a6eef9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DLC',NULL,'1001ZZ1LCP000NPH2DL5','子项编码','Y','child_no','child_no',120,'N','N','N','N','N',50,NULL,NULL,NULL,6,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','3cee5d9d-5b5c-4ed4-bd8d-7dc258d56c32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DLD',NULL,'1001ZZ1LCP000NPH2DL5','变更前数量','Y','before_num','before_num',120,'N','N','N','N','N',50,NULL,NULL,NULL,7,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','a311677d-97d8-4c0c-ab3b-613b0860125a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DLE',NULL,'1001ZZ1LCP000NPH2DL5','变更后数量','Y','after_num','after_num',120,'N','N','N','N','N',50,NULL,NULL,NULL,8,'like@=@left like@right like@','包含@等于@左包含@右包含@',NULL,1,'refpk',1,NULL,'N','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N',NULL,NULL,NULL,'input','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','bbc6b41c-a5c7-4974-9838-063cc09ed425',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DLF',NULL,'1001ZZ1LCP000NPH2DL5','pk_group','Y','pk_group','pk_group',120,'N','N','N','N','N',20,NULL,NULL,NULL,10,'=','等于@',NULL,1,'refpk',204,'集团','Y','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N','uap/refer/riart/groupTreeRef/index','uap.group.name','0001Z010000000000ZKS,code=N','refer','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','94d2a5b9-038f-41ea-ac0d-d3cca0616609',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
INSERT INTO pub_query_property(ts,dr,pk_query_property,onlyleafcanselect,areaid,label,defaultshow,code,metapath,width,visible,disabled,required,ischeck,usefunc,maxlength,creator,creationtime,resid,position,opersign,opersignname,defaultvalue,showtype,returntype,datatype,refname,containlower,isquerycondition,isfixedcondition,isbeyondorg,isnotmeta,define1,define2,define3,define4,define5,ismultiselectedenabled,refcode,metadataproperty,dataval,itemtype,isuse,visibleposition,isdefined,classid,proid,tablecode,querytablename,mobiletitle,isreslabel,showdataval,showfocus,orgrights,refcondition,isconverttimezones,isgrouppower,semanticsource,nodelete,anotherline,columnnum,isform,isbackfill,isdatapowerenable,datapoweroperationcode,hintmessage,tooltips,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6) VALUES(NULL,0,'1001ZZ1LCP000NPH2DLG',NULL,'1001ZZ1LCP000NPH2DL5','组织多版本','Y','pk_org_v','pk_org_v',120,'N','N','N','N','N',20,NULL,NULL,NULL,11,'=','等于@',NULL,1,'refpk',204,'业务单元版本','Y','Y','N','N','N',NULL,NULL,NULL,NULL,NULL,'N','uapbd/refer/orgv/BusinessUnitVersionTreeRef/index','uap.org_v.name','0001Z01000000002V000,code=N','refer','Y',NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','31a1d6a9-18cf-4a36-a690-5f9986886950',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL)
|
||||
/
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,'uap/refer/riart/groupTreeRef/index',NULL,NULL,NULL,'N','N','N',20,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,204,'0001Z010000000000ZKS,code=N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','uap.group.name','refer','集团','3b6dd171-2900-47f3-bfbe-41e4483a2a65',NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','94d2a5b9-038f-41ea-ac0d-d3cca0616609',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLH','1001ZZ1LCP000NPH2DL6','pk_group','pk_group','pk_group',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'Y','N','N',20,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','145ab806-6c2e-4df6-a42b-1dc0f6cbd268',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLI','1001ZZ1LCP000NPH2DL6','主键','pk_bchangemaster','pk_bchangemaster',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,'uapbd/refer/org/OrgWithGlobalAllDataTreeRef/index',NULL,NULL,NULL,'N','N','Y',20,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,204,'0001Z01000000001V017,code=N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','uap.org.name','refer','组织(包含全局)(所有)','985be8a4-3a36-4778-8afe-2d8ed3902659',NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','359aa1ba-dc01-4ad8-9a5d-b969fb99d2d9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLJ','1001ZZ1LCP000NPH2DL6','pk_org','pk_org','pk_org',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','a3dfd781-c3ac-4407-bfff-b4ac4cca7129',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLK','1001ZZ1LCP000NPH2DL6','code','code','code',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','7fa28f22-ab96-4b0b-a866-0ac2e1f5dbd9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLL','1001ZZ1LCP000NPH2DL6','name','name','name',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','b8695ab8-d5c3-424f-9022-9ba76c0b4a63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLM','1001ZZ1LCP000NPH2DL6','施工单号','billno','billno',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','45e03717-5464-42e7-87de-08aae8a6eef9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLN','1001ZZ1LCP000NPH2DL6','父项编码','parent_no','parent_no',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,6,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','3cee5d9d-5b5c-4ed4-bd8d-7dc258d56c32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLO','1001ZZ1LCP000NPH2DL6','子项编码','child_no','child_no',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,7,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','a311677d-97d8-4c0c-ab3b-613b0860125a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLP','1001ZZ1LCP000NPH2DL6','变更前数量','before_num','before_num',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,NULL,NULL,NULL,NULL,'N','N','Y',50,NULL,NULL,NULL,NULL,NULL,NULL,8,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N',NULL,'input',NULL,NULL,NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','bbc6b41c-a5c7-4974-9838-063cc09ed425',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLQ','1001ZZ1LCP000NPH2DL6','变更后数量','after_num','after_num',120,NULL)
|
||||
/
|
||||
INSERT INTO pub_form_property(ts,dr,refcode,isnextrow,isrevise,istotal,required,disabled,visible,maxlength,textrows,creator,modifier,creationtime,modifiedtime,resid,position,color,datatype,dataval,showformula,editformula,validateformula,defaultvar,relatemeta,define1,define2,define3,ismultiselectedenabled,metadataproperty,itemtype,refname,metaid,iscode,colnum,defaultvalue,isdefined,classid,proid,hyperlinkflag,onlyleafcanselect,mobiletitle,islock,isreslabel,showdataval,showfocus,issyncside,issyncfold,issynclist,isdatapowerenable,hyperlinkname4,hyperlinkname5,hyperlinkname6,isconverttimezones,refcondition,isgrouppower,editdisabled,tabskip,alignment,frozen,showasrange,anotherline,columnnum,icontype,coreindex,iscoredata,ishighlight,isbold,contentcolor,refenter,multiplelines,hintmessage,tooltips,hyperlinkurl,hyperlinkname,hyperlinktype,ishidefieldname,fontsize,isdesignlabel,designlabeloption,designlabelcontent,label2,label3,label4,label5,label6,hintmessage2,hintmessage3,hintmessage4,hintmessage5,hintmessage6,tooltips2,tooltips3,tooltips4,tooltips5,tooltips6,hyperlinkname2,pk_form_property,areaid,label,code,metapath,width,hyperlinkname3) VALUES(NULL,0,'uapbd/refer/orgv/BusinessUnitVersionTreeRef/index',NULL,NULL,NULL,'N','N','N',20,NULL,NULL,NULL,NULL,NULL,NULL,9,NULL,204,'0001Z01000000002V000,code=N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'N','uap.org_v.name','refer','业务单元版本','da7bba89-9a59-42d6-a262-c13ef459dbd9',NULL,NULL,NULL,'N','3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5','31a1d6a9-18cf-4a36-a690-5f9986886950',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1001ZZ1LCP000NPH2DLR','1001ZZ1LCP000NPH2DL6','组织多版本','pk_org_v','pk_org_v',120,NULL)
|
||||
/
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,38 @@
|
|||
package nccloud.web.mmbd.bchange.bchangemaster.action;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import nccloud.web.codeplatform.framework.action.base.BaseAction;
|
||||
import nccloud.web.codeplatform.framework.action.base.RequstParamWapper;
|
||||
import nccloud.web.codeplatform.framework.action.base.RequestDTO;
|
||||
import nccloud.web.codeplatform.framework.action.base.VOTransform;
|
||||
import nccloud.framework.service.ServiceLocator;
|
||||
import nccloud.framework.web.container.IRequest;
|
||||
import nc.vo.bchange.bchange.BchangeMasterVO;
|
||||
import nc.itf.mmbd.bchange.bchangemaster.IBchangeMasterVOService;
|
||||
|
||||
|
||||
/**
|
||||
* 新增Action
|
||||
*/
|
||||
public class AddBchangeMasterVOAction extends BaseAction{
|
||||
|
||||
@Override
|
||||
public Object doAction(IRequest request, RequstParamWapper paramWapper) throws Throwable{
|
||||
//json数据转换
|
||||
RequestDTO param = VOTransform.toVO(paramWapper.requestString,RequestDTO.class);
|
||||
//获取参数
|
||||
Map<String,Object> userJson = param.getUserJson();
|
||||
if(userJson == null){
|
||||
userJson = new HashMap<>();
|
||||
}
|
||||
BchangeMasterVO[] vos = this.getVOs(param, BchangeMasterVO.class);
|
||||
|
||||
//获得实体VO
|
||||
IBchangeMasterVOService service = ServiceLocator.find(IBchangeMasterVOService.class);
|
||||
BchangeMasterVO vo = service.preAddBchangeMasterVO(vos[0],userJson);
|
||||
return buildResult(param,true,null,vo);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
package nccloud.web.mmbd.bchange.bchangemaster.action;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Collections;
|
||||
|
||||
import nccloud.web.codeplatform.framework.action.base.BaseAction;
|
||||
import nccloud.web.codeplatform.framework.action.base.RequstParamWapper;
|
||||
import nccloud.web.codeplatform.framework.action.base.VOTransform;
|
||||
import nccloud.web.codeplatform.framework.action.base.RequestDTO;
|
||||
|
||||
import nccloud.framework.service.ServiceLocator;
|
||||
import nccloud.framework.web.container.IRequest;
|
||||
|
||||
import nccloud.pubitf.platform.query.INCCloudQueryService;
|
||||
import nccloud.dto.baseapp.querytree.dataformat.QueryTreeFormatVO;
|
||||
import nc.ui.querytemplate.querytree.IQueryScheme;
|
||||
import nccloud.commons.lang.StringUtils;
|
||||
import nccloud.commons.lang.ArrayUtils;
|
||||
import nccloud.framework.web.ui.model.PageInfo;
|
||||
import nc.itf.mmbd.bchange.bchangemaster.IBchangeMasterVOService;
|
||||
import nc.vo.bchange.bchange.BchangeMasterVO;
|
||||
|
||||
import nc.vo.bd.pub.NODE_TYPE;
|
||||
import nc.vo.pub.BusinessException;
|
||||
import nccloud.framework.web.container.SessionContext;
|
||||
import nc.vo.util.VisibleUtil;
|
||||
|
||||
/**
|
||||
* 列表查询
|
||||
*/
|
||||
public class ListBchangeMasterVOAction extends BaseAction{
|
||||
|
||||
@Override
|
||||
public Object doAction(IRequest request, RequstParamWapper paramWapper) throws Throwable{
|
||||
//json数据转换
|
||||
RequestDTO param = VOTransform.toVO(paramWapper.requestString,RequestDTO.class);
|
||||
|
||||
PageInfo pageInfo = param.getPageInfo();
|
||||
|
||||
//查询方案
|
||||
INCCloudQueryService nccloudService = ServiceLocator.find(INCCloudQueryService.class);
|
||||
QueryTreeFormatVO queryVo = param.getQueryTreeFormatVO();
|
||||
String searchSql = "";
|
||||
if(queryVo != null){
|
||||
IQueryScheme searchService = nccloudService.convertCondition(queryVo);
|
||||
searchSql = searchService.getWhereSQLOnly();
|
||||
}
|
||||
|
||||
|
||||
IBchangeMasterVOService service = ServiceLocator.find(IBchangeMasterVOService.class);
|
||||
//查询当前方案下所有的数据pk
|
||||
String[] allpks = service.listBchangeMasterVOPkByCond(searchSql);
|
||||
if(ArrayUtils.isEmpty(allpks)){
|
||||
return null;
|
||||
}
|
||||
//pk排序
|
||||
//Arrays.sort(allpks);
|
||||
param.setAllpks(allpks);
|
||||
//根据分页拿到当前分页的pk
|
||||
String[] curPagePks = pageInfo == null ? allpks : paramWapper.pageResult(pageInfo, allpks);
|
||||
//查询当前分页数据
|
||||
BchangeMasterVO[] vos = service.listBchangeMasterVOByPk(curPagePks,true);
|
||||
//构造返回结果
|
||||
return buildResult(param,false,null,vos);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
package nccloud.web.mmbd.bchange.bchangemaster.action;
|
||||
|
||||
import java.util.HashMap;
|
||||
//import java.util.List;
|
||||
import java.util.Map;
|
||||
//import nccloud.framework.web.ui.pattern.grid.Grid;
|
||||
import nccloud.web.codeplatform.framework.action.base.BaseAction;
|
||||
import nccloud.web.codeplatform.framework.action.base.RequstParamWapper;
|
||||
import nccloud.web.codeplatform.framework.action.base.RequestDTO;
|
||||
import nccloud.web.codeplatform.framework.action.base.VOTransform;
|
||||
import nccloud.framework.service.ServiceLocator;
|
||||
import nccloud.framework.core.util.ArrayUtils;
|
||||
import nccloud.framework.web.container.IRequest;
|
||||
import nc.itf.mmbd.bchange.bchangemaster.IBchangeMasterVOService;
|
||||
import nc.vo.bchange.bchange.BchangeMasterVO;
|
||||
|
||||
/**
|
||||
* 保存action(主子、单表、单form)
|
||||
*/
|
||||
public class SaveBchangeMasterVOAction extends BaseAction{
|
||||
|
||||
@Override
|
||||
public Object doAction(IRequest request, RequstParamWapper paramWapper) throws Throwable{
|
||||
RequestDTO param = VOTransform.toVO(paramWapper.requestString,RequestDTO.class);
|
||||
|
||||
IBchangeMasterVOService service = ServiceLocator.find(IBchangeMasterVOService.class);
|
||||
|
||||
BchangeMasterVO[] vos = this.getVOs(param, BchangeMasterVO.class);
|
||||
vos = service.saveBchangeMasterVO(vos );
|
||||
Object result = buildResult(param,param.getBillCard().getHead()!=null,null,vos);
|
||||
return result;
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<actions>
|
||||
<action>
|
||||
<name>mmbd.bchange.SaveBchangeMasterVOAction</name>
|
||||
<label>保存动作</label>
|
||||
<clazz>nccloud.web.mmbd.bchange.bchangemaster.action.SaveBchangeMasterVOAction</clazz>
|
||||
</action>
|
||||
<action>
|
||||
<name>mmbd.bchange.ListBchangeMasterVOAction</name>
|
||||
<label>列表查询动作</label>
|
||||
<clazz>nccloud.web.mmbd.bchange.bchangemaster.action.ListBchangeMasterVOAction</clazz>
|
||||
</action>
|
||||
<action>
|
||||
<name>mmbd.bchange.AddBchangeMasterVOAction</name>
|
||||
<label>新增动作</label>
|
||||
<clazz>nccloud.web.mmbd.bchange.bchangemaster.action.AddBchangeMasterVOAction</clazz>
|
||||
</action>
|
||||
</actions>
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<authorizes>
|
||||
<authorize>
|
||||
<appcode>*</appcode>
|
||||
<actions>
|
||||
<action>mmbd.bchange.SaveBchangeMasterVOAction</action>
|
||||
<action>mmbd.bchange.ListBchangeMasterVOAction</action>
|
||||
<action>mmbd.bchange.AddBchangeMasterVOAction</action>
|
||||
</actions>
|
||||
</authorize>
|
||||
</authorizes>
|
||||
|
|
@ -0,0 +1,236 @@
|
|||
package nc.impl.mmbd.bchange.bchangemaster;
|
||||
|
||||
import java.util.Map;
|
||||
import java.util.HashMap;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.ArrayList;
|
||||
import java.util.stream.Collectors;
|
||||
import java.util.UUID;
|
||||
import java.lang.String;
|
||||
import java.util.stream.Stream;
|
||||
import nc.vo.pub.lang.UFDateTime;
|
||||
import nc.uap.utils.InSQLCreator;
|
||||
import org.apache.commons.lang3.ArrayUtils;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.apache.commons.beanutils.PropertyUtils;
|
||||
import nc.vo.bd.meta.BDObjectAdpaterFactory;
|
||||
import nc.vo.bd.meta.IBDObject;
|
||||
import nc.vo.bd.meta.IBDObjectAdapterFactory;
|
||||
|
||||
import nc.vo.pub.BusinessException;
|
||||
import nc.vo.pub.BusinessRuntimeException;
|
||||
import nc.vo.pub.SuperVO;
|
||||
import nc.vo.pub.VOStatus;
|
||||
import nc.codeplatform.framework.service.ServiceSupport;
|
||||
|
||||
|
||||
import nc.vo.bchange.bchange.BchangeMasterVO;
|
||||
import nc.itf.mmbd.bchange.bchangemaster.IBchangeMasterVOService;
|
||||
|
||||
|
||||
import nc.bs.framework.common.InvocationInfoProxy;
|
||||
import nccloud.framework.core.exception.ExceptionUtils;
|
||||
|
||||
public class BchangeMasterVOServiceImpl extends ServiceSupport implements IBchangeMasterVOService {
|
||||
|
||||
public BchangeMasterVOServiceImpl() {
|
||||
super("3b2de27c-86f9-42bc-acc5-5c9a4bb48ba5");
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public BchangeMasterVO[] listBchangeMasterVOByPk(String[] pks, boolean blazyLoad) throws BusinessException{
|
||||
return dao.listByPk(BchangeMasterVO.class, pks, blazyLoad);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BchangeMasterVO findBchangeMasterVOByPk(String pk, boolean blazyLoad) throws BusinessException{
|
||||
return dao.findByPk(BchangeMasterVO.class, pk, blazyLoad);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BchangeMasterVO[] listBchangeMasterVOByPk(String condition, boolean blazyLoad) throws BusinessException{
|
||||
return dao.listByCondition(BchangeMasterVO.class, condition, blazyLoad);
|
||||
}
|
||||
@Override
|
||||
public String[] listBchangeMasterVOPkByCond(String condition) throws BusinessException{
|
||||
return listBchangeMasterVOPkByCond(condition,new String[]{"pk_bchangemaster"});
|
||||
}
|
||||
@Override
|
||||
public String[] listBchangeMasterVOPkByCond(String condition,String[] orderPath) throws BusinessException{
|
||||
if(StringUtils.isEmpty(condition)) {
|
||||
condition = " 1 = 1 ";
|
||||
}
|
||||
StringBuilder sql = new StringBuilder();
|
||||
sql.append(" select pk_bchangemaster from ").append(BchangeMasterVO.getDefaultTableName());
|
||||
sql.append(" where ").append(condition);
|
||||
if (ArrayUtils.isNotEmpty(orderPath)) {
|
||||
sql.append(" order by ").append(StringUtils.join(orderPath, ", "));
|
||||
}
|
||||
return (String[]) dao.getBaseDAO().executeQuery(sql.toString(), (rs) -> {
|
||||
List<String> pks = new ArrayList<>();
|
||||
while (rs.next()) {
|
||||
pks.add(rs.getString(1));
|
||||
}
|
||||
return pks.toArray(new String[0]);
|
||||
});
|
||||
}
|
||||
@Override
|
||||
public void initDefaultData(BchangeMasterVO vo){
|
||||
if(vo.getAttributeValue("pk_group") == null){
|
||||
vo.setAttributeValue("pk_group",InvocationInfoProxy.getInstance().getGroupId());
|
||||
}
|
||||
}
|
||||
@Override
|
||||
public BchangeMasterVO preAddBchangeMasterVO(BchangeMasterVO vo,Map<String,Object> userJson) throws BusinessException{
|
||||
|
||||
getMainVO(vo).setStatus(VOStatus.NEW);
|
||||
initDefaultData((BchangeMasterVO)getMainVO(vo));
|
||||
String pk_org = InvocationInfoProxy.getInstance().getGroupId();
|
||||
|
||||
//下面这段要判断是否是树表界面插件
|
||||
Map<String,String> data = userJson!=null && userJson.get("data") != null?(Map<String,String>)userJson.get("data"):null;
|
||||
if(data!=null && data.size()>0){
|
||||
String parentKey = data.get("parentKey");
|
||||
String parentPk = data.get("parentPk");
|
||||
getMainVO(vo).setAttributeValue(parentKey,parentPk);
|
||||
}
|
||||
|
||||
|
||||
return vo;
|
||||
}
|
||||
@Override
|
||||
public BchangeMasterVO preAddBchangeMasterVO(Map<String,Object> userJson) throws BusinessException{
|
||||
BchangeMasterVO result = null;
|
||||
|
||||
BchangeMasterVO mainvo = new BchangeMasterVO();
|
||||
//设置默认值
|
||||
initDefaultData(mainvo);
|
||||
|
||||
result = mainvo;
|
||||
return preAddBchangeMasterVO(result,userJson);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BchangeMasterVO preEditBchangeMasterVO(String pk) throws BusinessException{
|
||||
return dao.findByPkWithDr(BchangeMasterVO.class, pk, true);
|
||||
}
|
||||
@Override
|
||||
public BchangeMasterVO copyBchangeMasterVO(String pk) throws BusinessException{
|
||||
|
||||
BchangeMasterVO vo = dao.findByPkWithDr(BchangeMasterVO.class, pk, false);
|
||||
|
||||
if (vo == null) {
|
||||
throw new BusinessException("没有查到对应的数据,请重试");
|
||||
}
|
||||
|
||||
getMainVO(vo).setPrimaryKey(null);
|
||||
getMainVO(vo).setStatus(VOStatus.NEW);
|
||||
|
||||
getMainVO(vo).setAttributeValue("srcbilltype",null);
|
||||
getMainVO(vo).setAttributeValue("srcbillid",null);
|
||||
|
||||
getMainVO(vo).setAttributeValue("code",null);
|
||||
getMainVO(vo).setAttributeValue("",null);
|
||||
getMainVO(vo).setAttributeValue("name",null);
|
||||
String defaultGroup = InvocationInfoProxy.getInstance().getGroupId();
|
||||
getMainVO(vo).setAttributeValue("pk_group",defaultGroup);
|
||||
getMainVO(vo).setAttributeValue("", new UFDateTime(InvocationInfoProxy.getInstance().getBizDateTime()));
|
||||
getMainVO(vo).setAttributeValue("", null);
|
||||
|
||||
return vo;
|
||||
}
|
||||
|
||||
public BchangeMasterVO[] saveBchangeMasterVO(BchangeMasterVO vo ) throws BusinessException{
|
||||
return this.saveBchangeMasterVO(vo, null);
|
||||
}
|
||||
|
||||
public BchangeMasterVO[] saveBchangeMasterVO(BchangeMasterVO vo , String nodetype ) throws BusinessException{
|
||||
lockUtils.lock(vo);
|
||||
String pk = getVOPrimaryKey(vo);
|
||||
setDefaultVal(vo);
|
||||
if(StringUtils.isEmpty(pk)){
|
||||
return insert(vo); //插入
|
||||
}else{
|
||||
return update(vo); //更新
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 保存前处理一些默认值
|
||||
* @param vos
|
||||
*/
|
||||
private void setDefaultVal(BchangeMasterVO... vos) throws BusinessException {
|
||||
//其他默认值处理
|
||||
}
|
||||
|
||||
// 给单表(行编辑表)单独适配
|
||||
@Override
|
||||
public BchangeMasterVO[] saveBchangeMasterVO(BchangeMasterVO[] vos) throws BusinessException {
|
||||
return this.saveBchangeMasterVO(vos, null);
|
||||
}
|
||||
|
||||
public BchangeMasterVO[] saveBchangeMasterVO(BchangeMasterVO[] vos , String nodetype ) throws BusinessException {
|
||||
if (ArrayUtils.isEmpty(vos)) {
|
||||
return new BchangeMasterVO[0];
|
||||
}
|
||||
lockUtils.lock(vos);
|
||||
setDefaultVal(vos); // 设置默认值
|
||||
return save(vos,true);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BchangeMasterVO[] deleteBchangeMasterVOs(Map<String,String> tsMap) throws BusinessException{
|
||||
return deleteBchangeMasterVOs(tsMap, null);
|
||||
}
|
||||
@Override
|
||||
public BchangeMasterVO[] deleteBchangeMasterVOs(Map<String,String> tsMap, String nodetype) throws BusinessException{
|
||||
BchangeMasterVO[] vos = dao.listByPk(BchangeMasterVO.class,tsMap.keySet().toArray(new String[0]));
|
||||
if (vos == null || vos.length == 0) {
|
||||
throw new BusinessException("没有查到对应的数据,请重试");
|
||||
}
|
||||
|
||||
lockUtils.lock(vos);
|
||||
validate(vos,tsMap);
|
||||
|
||||
delete(vos,true);
|
||||
|
||||
return vos;
|
||||
}
|
||||
|
||||
//校验 包括ts校验 已提交校验
|
||||
private void validate(BchangeMasterVO[] vos,Map<String,String> tsMap) throws BusinessException{
|
||||
|
||||
Boolean isPass = true;
|
||||
String error = ""; //错误信息
|
||||
if(ArrayUtils.isEmpty(vos)){
|
||||
isPass = false;
|
||||
}
|
||||
|
||||
for(int i = 0 ; i < vos.length ; i++){
|
||||
SuperVO mainvo = vos[i];
|
||||
UFDateTime ts = (UFDateTime)mainvo.getAttributeValue("ts");
|
||||
if(!StringUtils.equals(tsMap.get(mainvo.getPrimaryKey()),ts.toString())){
|
||||
isPass = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if(!isPass) {
|
||||
throw new BusinessException("您操作的数据已被他人修改或删除,请刷新后重试!");
|
||||
}
|
||||
if(!"".equals(error)){
|
||||
throw new BusinessException(error);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public <T> T[] loadTreeData(Class<T> clazz,Map<String,Object> userJson) throws BusinessException{
|
||||
String condition = "dr = 0 ";
|
||||
|
||||
return dao.listByCondition(clazz, condition, false);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,103 @@
|
|||
package nc.itf.mmbd.bchange.bchangemaster;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
import nc.vo.pub.BusinessException;
|
||||
|
||||
import nc.vo.bchange.bchange.BchangeMasterVO;
|
||||
|
||||
public interface IBchangeMasterVOService{
|
||||
|
||||
|
||||
/**
|
||||
* 主实体的主表VO查询操作
|
||||
* 根据主键条件查询Agg数组
|
||||
* @param pk主键
|
||||
* @return 结果数组
|
||||
*/
|
||||
public BchangeMasterVO[] listBchangeMasterVOByPk(String[] pks, boolean blazyLoad ) throws BusinessException;
|
||||
|
||||
/**
|
||||
* 主实体的主表VO查询操作
|
||||
* 根据主键条件查询Agg对象
|
||||
* @param pk 主键
|
||||
* @return 结果对象
|
||||
*/
|
||||
public BchangeMasterVO findBchangeMasterVOByPk(String pk, boolean blazyLoad) throws BusinessException;
|
||||
|
||||
/**
|
||||
* 主实体的主表VO查询操作
|
||||
* 根据条件字符串查询Agg数组
|
||||
* @param condition 主键
|
||||
* @return 结果数组
|
||||
*/
|
||||
public BchangeMasterVO[] listBchangeMasterVOByPk(String condition, boolean blazyLoad) throws BusinessException;
|
||||
/**
|
||||
* 主实体的主表pk查询操作
|
||||
* 根据条件字符串查询pk数组数组
|
||||
* @param condition 查询方案+
|
||||
* @return 结果数组
|
||||
*/
|
||||
public String[] listBchangeMasterVOPkByCond(String condition) throws BusinessException;
|
||||
|
||||
/**
|
||||
* 主实体的主表pk查询操作
|
||||
* 根据条件字符串查询pk数组数组
|
||||
* @param condition 查询方案+
|
||||
* @return 结果数组
|
||||
*/
|
||||
public String[] listBchangeMasterVOPkByCond(String condition,String[] orderPath) throws BusinessException;
|
||||
/**
|
||||
* 给主实体vo设置默认值
|
||||
* @param vo
|
||||
*/
|
||||
public void initDefaultData(BchangeMasterVO vo);
|
||||
|
||||
|
||||
/**
|
||||
* 预新增操作主实体数据
|
||||
* @param userJson 新增时需要的扩展参数对象
|
||||
*/
|
||||
public BchangeMasterVO preAddBchangeMasterVO(Map<String,Object> userJson) throws BusinessException;
|
||||
|
||||
public BchangeMasterVO preAddBchangeMasterVO(BchangeMasterVO vo,Map<String,Object> userJson) throws BusinessException;
|
||||
/**
|
||||
* 预编辑操作主实体数据
|
||||
* @param userJson 新增时需要的扩展参数对象
|
||||
*/
|
||||
public BchangeMasterVO preEditBchangeMasterVO(String pk) throws BusinessException;
|
||||
|
||||
/**
|
||||
* 复制操作主实体数据
|
||||
*
|
||||
*/
|
||||
public BchangeMasterVO copyBchangeMasterVO(String pk) throws BusinessException;
|
||||
/**
|
||||
* 保存操作主实体数据
|
||||
* @param vos 保存对象
|
||||
* @return @
|
||||
*/
|
||||
|
||||
public BchangeMasterVO[] saveBchangeMasterVO(BchangeMasterVO vo) throws BusinessException;
|
||||
public BchangeMasterVO[] saveBchangeMasterVO(BchangeMasterVO[] vos) throws BusinessException;
|
||||
|
||||
public BchangeMasterVO[] saveBchangeMasterVO(BchangeMasterVO vo, String node) throws BusinessException;
|
||||
public BchangeMasterVO[] saveBchangeMasterVO(BchangeMasterVO[] vos, String node) throws BusinessException;
|
||||
|
||||
/**
|
||||
* 删除操作主实体数据
|
||||
* @param vos 删除对象
|
||||
* @return @
|
||||
*/
|
||||
public BchangeMasterVO[] deleteBchangeMasterVOs(Map<String,String> tsMap) throws BusinessException;
|
||||
public BchangeMasterVO[] deleteBchangeMasterVOs(Map<String,String> tsMap, String nodetype) throws BusinessException;
|
||||
|
||||
/**
|
||||
* 加载树类型数据主实体
|
||||
* @param vos 对象
|
||||
* @return @
|
||||
*/
|
||||
public <T> T[] loadTreeData(Class<T> clazz,Map<String,Object> userJson) throws BusinessException;
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,296 @@
|
|||
package nc.vo.bchange.bchange;
|
||||
|
||||
import nc.vo.pub.*;
|
||||
import nc.vo.pubapp.pattern.model.meta.entity.vo.VOMetaFactory;
|
||||
|
||||
public class BchangeMasterVO extends SuperVO {
|
||||
|
||||
//构造方法
|
||||
public BchangeMasterVO() {
|
||||
super();
|
||||
}
|
||||
|
||||
|
||||
private java.lang.String pk_bchangemaster;
|
||||
private java.lang.String code;
|
||||
private java.lang.String name;
|
||||
private java.lang.String billno;
|
||||
private java.lang.String parent_no;
|
||||
private java.lang.String child_no;
|
||||
private java.lang.String before_num;
|
||||
private java.lang.String after_num;
|
||||
private java.lang.String pk_org;
|
||||
private java.lang.String pk_group;
|
||||
private java.lang.String pk_org_v;
|
||||
private java.lang.Integer dr = 0;
|
||||
private nc.vo.pub.lang.UFDateTime ts;
|
||||
|
||||
|
||||
public static final String PK_BCHANGEMASTER = "pk_bchangemaster";
|
||||
public static final String CODE = "code";
|
||||
public static final String NAME = "name";
|
||||
public static final String BILLNO = "billno";
|
||||
public static final String PARENT_NO = "parent_no";
|
||||
public static final String CHILD_NO = "child_no";
|
||||
public static final String BEFORE_NUM = "before_num";
|
||||
public static final String AFTER_NUM = "after_num";
|
||||
public static final String PK_ORG = "pk_org";
|
||||
public static final String PK_GROUP = "pk_group";
|
||||
public static final String PK_ORG_V = "pk_org_v";
|
||||
public static final String DR = "dr";
|
||||
public static final String TS = "ts";
|
||||
|
||||
/**
|
||||
* 属性name的Setter方法.属性名:主键
|
||||
* 创建日期:2025-08-26
|
||||
* @param newName java.lang.String
|
||||
*/
|
||||
public void setPk_bchangemaster(java.lang.String pk_bchangemaster){
|
||||
this.pk_bchangemaster = pk_bchangemaster;
|
||||
}
|
||||
/**
|
||||
* 属性name的Getter方法.属性名:主键
|
||||
* 创建日期:2025-08-26
|
||||
* @return java.lang.String
|
||||
*/
|
||||
public java.lang.String getPk_bchangemaster(){
|
||||
return this.pk_bchangemaster;
|
||||
}
|
||||
|
||||
/**
|
||||
* 属性name的Setter方法.属性名:code
|
||||
* 创建日期:2025-08-26
|
||||
* @param newName java.lang.String
|
||||
*/
|
||||
public void setCode(java.lang.String code){
|
||||
this.code = code;
|
||||
}
|
||||
/**
|
||||
* 属性name的Getter方法.属性名:code
|
||||
* 创建日期:2025-08-26
|
||||
* @return java.lang.String
|
||||
*/
|
||||
public java.lang.String getCode(){
|
||||
return this.code;
|
||||
}
|
||||
|
||||
/**
|
||||
* 属性name的Setter方法.属性名:name
|
||||
* 创建日期:2025-08-26
|
||||
* @param newName java.lang.String
|
||||
*/
|
||||
public void setName(java.lang.String name){
|
||||
this.name = name;
|
||||
}
|
||||
/**
|
||||
* 属性name的Getter方法.属性名:name
|
||||
* 创建日期:2025-08-26
|
||||
* @return java.lang.String
|
||||
*/
|
||||
public java.lang.String getName(){
|
||||
return this.name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 属性name的Setter方法.属性名:施工单号
|
||||
* 创建日期:2025-08-26
|
||||
* @param newName java.lang.String
|
||||
*/
|
||||
public void setBillno(java.lang.String billno){
|
||||
this.billno = billno;
|
||||
}
|
||||
/**
|
||||
* 属性name的Getter方法.属性名:施工单号
|
||||
* 创建日期:2025-08-26
|
||||
* @return java.lang.String
|
||||
*/
|
||||
public java.lang.String getBillno(){
|
||||
return this.billno;
|
||||
}
|
||||
|
||||
/**
|
||||
* 属性name的Setter方法.属性名:父项编码
|
||||
* 创建日期:2025-08-26
|
||||
* @param newName java.lang.String
|
||||
*/
|
||||
public void setParent_no(java.lang.String parent_no){
|
||||
this.parent_no = parent_no;
|
||||
}
|
||||
/**
|
||||
* 属性name的Getter方法.属性名:父项编码
|
||||
* 创建日期:2025-08-26
|
||||
* @return java.lang.String
|
||||
*/
|
||||
public java.lang.String getParent_no(){
|
||||
return this.parent_no;
|
||||
}
|
||||
|
||||
/**
|
||||
* 属性name的Setter方法.属性名:子项编码
|
||||
* 创建日期:2025-08-26
|
||||
* @param newName java.lang.String
|
||||
*/
|
||||
public void setChild_no(java.lang.String child_no){
|
||||
this.child_no = child_no;
|
||||
}
|
||||
/**
|
||||
* 属性name的Getter方法.属性名:子项编码
|
||||
* 创建日期:2025-08-26
|
||||
* @return java.lang.String
|
||||
*/
|
||||
public java.lang.String getChild_no(){
|
||||
return this.child_no;
|
||||
}
|
||||
|
||||
/**
|
||||
* 属性name的Setter方法.属性名:变更前数量
|
||||
* 创建日期:2025-08-26
|
||||
* @param newName java.lang.String
|
||||
*/
|
||||
public void setBefore_num(java.lang.String before_num){
|
||||
this.before_num = before_num;
|
||||
}
|
||||
/**
|
||||
* 属性name的Getter方法.属性名:变更前数量
|
||||
* 创建日期:2025-08-26
|
||||
* @return java.lang.String
|
||||
*/
|
||||
public java.lang.String getBefore_num(){
|
||||
return this.before_num;
|
||||
}
|
||||
|
||||
/**
|
||||
* 属性name的Setter方法.属性名:变更后数量
|
||||
* 创建日期:2025-08-26
|
||||
* @param newName java.lang.String
|
||||
*/
|
||||
public void setAfter_num(java.lang.String after_num){
|
||||
this.after_num = after_num;
|
||||
}
|
||||
/**
|
||||
* 属性name的Getter方法.属性名:变更后数量
|
||||
* 创建日期:2025-08-26
|
||||
* @return java.lang.String
|
||||
*/
|
||||
public java.lang.String getAfter_num(){
|
||||
return this.after_num;
|
||||
}
|
||||
|
||||
/**
|
||||
* 属性name的Setter方法.属性名:pk_org
|
||||
* 创建日期:2025-08-26
|
||||
* @param newName java.lang.String
|
||||
*/
|
||||
public void setPk_org(java.lang.String pk_org){
|
||||
this.pk_org = pk_org;
|
||||
}
|
||||
/**
|
||||
* 属性name的Getter方法.属性名:pk_org
|
||||
* 创建日期:2025-08-26
|
||||
* @return java.lang.String
|
||||
*/
|
||||
public java.lang.String getPk_org(){
|
||||
return this.pk_org;
|
||||
}
|
||||
|
||||
/**
|
||||
* 属性name的Setter方法.属性名:pk_group
|
||||
* 创建日期:2025-08-26
|
||||
* @param newName java.lang.String
|
||||
*/
|
||||
public void setPk_group(java.lang.String pk_group){
|
||||
this.pk_group = pk_group;
|
||||
}
|
||||
/**
|
||||
* 属性name的Getter方法.属性名:pk_group
|
||||
* 创建日期:2025-08-26
|
||||
* @return java.lang.String
|
||||
*/
|
||||
public java.lang.String getPk_group(){
|
||||
return this.pk_group;
|
||||
}
|
||||
|
||||
/**
|
||||
* 属性name的Setter方法.属性名:组织多版本
|
||||
* 创建日期:2025-08-26
|
||||
* @param newName java.lang.String
|
||||
*/
|
||||
public void setPk_org_v(java.lang.String pk_org_v){
|
||||
this.pk_org_v = pk_org_v;
|
||||
}
|
||||
/**
|
||||
* 属性name的Getter方法.属性名:组织多版本
|
||||
* 创建日期:2025-08-26
|
||||
* @return java.lang.String
|
||||
*/
|
||||
public java.lang.String getPk_org_v(){
|
||||
return this.pk_org_v;
|
||||
}
|
||||
|
||||
/**
|
||||
* 属性name的Setter方法.属性名:dr
|
||||
* 创建日期:2025-08-26
|
||||
* @param newName java.lang.Integer
|
||||
*/
|
||||
public void setDr(java.lang.Integer dr){
|
||||
this.dr = dr;
|
||||
}
|
||||
/**
|
||||
* 属性name的Getter方法.属性名:dr
|
||||
* 创建日期:2025-08-26
|
||||
* @return java.lang.Integer
|
||||
*/
|
||||
public java.lang.Integer getDr(){
|
||||
return this.dr;
|
||||
}
|
||||
|
||||
/**
|
||||
* 属性name的Setter方法.属性名:ts
|
||||
* 创建日期:2025-08-26
|
||||
* @param newName nc.vo.pub.lang.UFDateTime
|
||||
*/
|
||||
public void setTs(nc.vo.pub.lang.UFDateTime ts){
|
||||
this.ts = ts;
|
||||
}
|
||||
/**
|
||||
* 属性name的Getter方法.属性名:ts
|
||||
* 创建日期:2025-08-26
|
||||
* @return nc.vo.pub.lang.UFDateTime
|
||||
*/
|
||||
public nc.vo.pub.lang.UFDateTime getTs(){
|
||||
return this.ts;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public java.lang.String getParentPKFieldName() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public java.lang.String getPKFieldName() {
|
||||
return "pk_bchangemaster";
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>返回表名称.
|
||||
* <p>
|
||||
* 创建日期:
|
||||
* @return java.lang.String
|
||||
*/
|
||||
@Override
|
||||
public java.lang.String getTableName() {
|
||||
return "mmbd_bchangemaster";
|
||||
}
|
||||
|
||||
public static java.lang.String getDefaultTableName() {
|
||||
return "mmbd_bchangemaster";
|
||||
}
|
||||
|
||||
@Override
|
||||
@nc.vo.annotation.MDEntityInfo(beanFullclassName = "nc.vo.bchange.bchange.BchangeMasterVO" )
|
||||
public IVOMeta getMetaData() {
|
||||
return VOMetaFactory.getInstance().getVOMeta("uapbd.bchangeMaster");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,267 @@
|
|||
|
||||
package nccloud.api.mmbd.bchangemanage.bchangemaster;
|
||||
|
||||
import java.lang.reflect.Field;
|
||||
|
||||
import javax.ws.rs.Consumes;
|
||||
import javax.ws.rs.POST;
|
||||
import javax.ws.rs.Path;
|
||||
import javax.ws.rs.Produces;
|
||||
import java.lang.StringBuilder;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.Iterator;
|
||||
import java.util.Map;
|
||||
import java.util.Map.Entry;
|
||||
import java.util.Set;
|
||||
import java.util.HashMap;
|
||||
|
||||
import org.json.JSONString;
|
||||
|
||||
import com.alibaba.fastjson.JSON;
|
||||
import com.alibaba.fastjson.JSONArray;
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
|
||||
import nccloud.ws.rest.resource.AbstractNCCRestResource;
|
||||
import nccloud.api.rest.utils.ResultMessageUtil;
|
||||
import nccloud.commons.lang.ArrayUtils;
|
||||
import nccloud.commons.lang.StringUtils;
|
||||
import nc.bs.framework.common.NCLocator;
|
||||
import nc.vo.pub.JavaType;
|
||||
import nc.vo.pub.IAttributeMeta;
|
||||
import nc.vo.pub.BusinessException;
|
||||
import nc.vo.pub.SuperVO;
|
||||
import nc.vo.pub.VOStatus;
|
||||
import nc.vo.pub.lang.UFBoolean;
|
||||
import nc.vo.pub.lang.UFDate;
|
||||
import nc.vo.pub.lang.UFDateTime;
|
||||
import nc.vo.pub.lang.UFDouble;
|
||||
import nc.vo.pub.lang.UFLiteralDate;
|
||||
import nc.vo.pub.lang.UFTime;
|
||||
import nc.vo.bchange.bchange.BchangeMasterVO;
|
||||
import nc.itf.mmbd.bchange.bchangemaster.IBchangeMasterVOService;
|
||||
|
||||
@Path("mmbd/bchangemanage/bchangeMaster")
|
||||
public class BchangeMasterManageResources extends AbstractNCCRestResource {
|
||||
|
||||
private Map<String, String> fieldsNameAndType = new HashMap<>();
|
||||
|
||||
private Map<String, Map<String, String>> bodyFieldsNameAndTypes = new HashMap<>();
|
||||
|
||||
@Override
|
||||
public String getModule() {
|
||||
return "mmbd";
|
||||
}
|
||||
|
||||
@POST
|
||||
@Path("/addBchangeMasterVO")
|
||||
@Consumes({ "application/json" })
|
||||
@Produces({ "application/json" })
|
||||
public JSONString addBchangeMasterVO(JSONString json) {
|
||||
return dealJson(json, "addBchangeMasterVO");
|
||||
}
|
||||
|
||||
@POST
|
||||
@Path("/deleteBchangeMasterVO")
|
||||
@Consumes({ "application/json" })
|
||||
@Produces({ "application/json" })
|
||||
public JSONString deleteBchangeMasterVO(JSONString json) {
|
||||
return dealJson(json, "deleteBchangeMasterVO");
|
||||
}
|
||||
|
||||
@POST
|
||||
@Path("/updateBchangeMasterVO")
|
||||
@Consumes({ "application/json" })
|
||||
@Produces({ "application/json" })
|
||||
public JSONString updateBchangeMasterVO(JSONString json) {
|
||||
return dealJson(json, "updateBchangeMasterVO");
|
||||
}
|
||||
|
||||
@POST
|
||||
@Path("/queryBchangeMasterVO")
|
||||
@Consumes({ "application/json" })
|
||||
@Produces({ "application/json" })
|
||||
public JSONString queryBchangeMasterVO(JSONString json) {
|
||||
return dealJson(json, "queryBchangeMasterVO");
|
||||
}
|
||||
|
||||
private JSONString dealJson(JSONString json, String methodName) {
|
||||
if(json == null) {
|
||||
return ResultMessageUtil.exceptionToJSON(new NullPointerException("输入参数不能为空!"));
|
||||
}
|
||||
JSONObject obj = JSON.parseObject(json.toJSONString());
|
||||
if(methodName.indexOf("add") >= 0) {
|
||||
StringBuilder builder = requiredFieldsValidate(obj);
|
||||
if(builder.length() > 0) {
|
||||
String addError = "新增时必输项存在空值,为空的必输项有:" + builder.deleteCharAt(builder.length() - 1).toString();
|
||||
return ResultMessageUtil.exceptionToJSON(new NullPointerException(addError));
|
||||
} else {
|
||||
// 调用接口新增
|
||||
BchangeMasterVO vo = buildVO(obj, true);
|
||||
BchangeMasterVO[] result = null;
|
||||
try{
|
||||
result = getService().saveBchangeMasterVO(vo);
|
||||
} catch(BusinessException e) {
|
||||
return ResultMessageUtil.exceptionToJSON(e);
|
||||
}
|
||||
JSONObject returnJson = new JSONObject();
|
||||
returnJson.put("result", result);
|
||||
return ResultMessageUtil.toJSON(returnJson);
|
||||
}
|
||||
} else if(methodName.indexOf("delete") >= 0) {
|
||||
String entityPk = obj.getString("pk_bchangemaster");
|
||||
if(StringUtils.isEmpty(entityPk)) {
|
||||
return ResultMessageUtil.exceptionToJSON(new NullPointerException("删除时主键为必输项,不能为空!"));
|
||||
}
|
||||
// 删除需要区分全局、集团和业务单元
|
||||
String pk_org = obj.getString("pk_org");
|
||||
// 如果没有传pk_org, 默认是全局
|
||||
if(StringUtils.isEmpty(pk_org)) {
|
||||
pk_org = "GLOBLE00000000000000";
|
||||
}
|
||||
// 调用接口删除
|
||||
JSONObject returnJson = new JSONObject();
|
||||
Map<String, String> tsMap = new HashMap<>();
|
||||
BchangeMasterVO[] vos = null;
|
||||
try {
|
||||
vos = getService().listBchangeMasterVOByPk("pk_bchangemaster = '" + entityPk + "'", false);
|
||||
} catch (BusinessException e) {
|
||||
ResultMessageUtil.exceptionToJSON(e);
|
||||
}
|
||||
if(ArrayUtils.isNotEmpty(vos)) {
|
||||
tsMap.put(vos[0].getAttributeValue("pk_bchangemaster").toString(), vos[0].getTs().toString());
|
||||
}
|
||||
BchangeMasterVO[] result = null;
|
||||
try {
|
||||
result = getService().deleteBchangeMasterVOs(tsMap);
|
||||
} catch (BusinessException e) {
|
||||
ResultMessageUtil.exceptionToJSON(e);
|
||||
}
|
||||
returnJson.put("result", result);
|
||||
return ResultMessageUtil.toJSON(returnJson);
|
||||
} else if(methodName.indexOf("update") >= 0) {
|
||||
JSONObject object = (JSONObject)obj.get("bchangeMaster");
|
||||
String entityPk = object.getString("pk_bchangemaster");
|
||||
if(StringUtils.isEmpty(entityPk)) {
|
||||
return ResultMessageUtil.exceptionToJSON(new NullPointerException("修改时主键为必输项,不能为空!"));
|
||||
}
|
||||
StringBuilder builder = requiredFieldsValidate(obj);
|
||||
if(builder.length() > 0) {
|
||||
String updateError = "修改时必输项存在空值,为空的必输项有:" + builder.deleteCharAt(builder.length() - 1).toString();
|
||||
return ResultMessageUtil.exceptionToJSON(new NullPointerException(updateError));
|
||||
} else {
|
||||
// 调用接口修改
|
||||
BchangeMasterVO vo = buildVO(obj, false);
|
||||
BchangeMasterVO[] result = null;
|
||||
JSONObject returnJson = new JSONObject();
|
||||
try{
|
||||
result = getService().saveBchangeMasterVO(vo);
|
||||
} catch(BusinessException e) {
|
||||
return ResultMessageUtil.exceptionToJSON(e);
|
||||
}
|
||||
returnJson.put("result", result);
|
||||
return ResultMessageUtil.toJSON(returnJson);
|
||||
}
|
||||
} else if(methodName.indexOf("query") >= 0) {
|
||||
// 查询时需要接收业务单元作为参数吗?
|
||||
StringBuilder sqlBuilder = new StringBuilder(" isnull(dr, 0) = 0");
|
||||
Set<Entry<String, Object>> entrySet = obj.entrySet();
|
||||
Iterator<Entry<String, Object>> iterator = entrySet.iterator();
|
||||
while(iterator.hasNext()) {
|
||||
Entry<String, Object> entry = iterator.next();
|
||||
if(entry.getValue() != null) {
|
||||
sqlBuilder.append(" and " + entry.getKey() + "='" + entry.getValue() + "'");
|
||||
}
|
||||
}
|
||||
BchangeMasterVO[] results = null;
|
||||
try {
|
||||
String[] pks = getService().listBchangeMasterVOPkByCond(sqlBuilder.toString());
|
||||
results = getService().listBchangeMasterVOByPk(pks, false);
|
||||
} catch (BusinessException e) {
|
||||
return ResultMessageUtil.exceptionToJSON(e);
|
||||
}
|
||||
JSONObject returnJson = new JSONObject();
|
||||
returnJson.put("result", results);
|
||||
return ResultMessageUtil.toJSON(returnJson);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
private StringBuilder requiredFieldsValidate(JSONObject obj) {
|
||||
StringBuilder builder = new StringBuilder();
|
||||
List<String> notNullFields = getRequiredFields(obj);
|
||||
JSONObject object = (JSONObject)obj.get("bchangeMaster");
|
||||
for(String notNullField : notNullFields) {
|
||||
Object val = object.get(notNullField);
|
||||
if(val == null){
|
||||
builder.append(notNullField + ",");
|
||||
}
|
||||
}
|
||||
return builder;
|
||||
}
|
||||
|
||||
private BchangeMasterVO buildVO(JSONObject json, boolean isAdd) {
|
||||
if(json.get("bchangeMaster") == null) {
|
||||
throw new NullPointerException("传入参数中不存在主实体数据!");
|
||||
}
|
||||
int voStatus = isAdd ? VOStatus.NEW : VOStatus.UPDATED;
|
||||
|
||||
// 主实体
|
||||
JSONObject headJson = (JSONObject) json.get("bchangeMaster");
|
||||
BchangeMasterVO headVO = new BchangeMasterVO();
|
||||
IAttributeMeta[] headAttrs = headVO.getMetaData().getAttributes();
|
||||
for (IAttributeMeta attribute : headAttrs) {
|
||||
Object value = getValueByAttr(headJson, attribute);
|
||||
headVO.setAttributeValue(attribute.getName(), value);
|
||||
}
|
||||
headVO.setStatus(voStatus);
|
||||
|
||||
return headVO;
|
||||
}
|
||||
|
||||
private Object getValueByAttr(JSONObject json, IAttributeMeta attribute) {
|
||||
Object value = json.get(attribute.getName());
|
||||
if (value == null || StringUtils.isEmpty(value.toString())) {
|
||||
return null;
|
||||
}
|
||||
JavaType javaType = attribute.getJavaType();
|
||||
switch (javaType) {
|
||||
case String:
|
||||
case UFStringEnum:
|
||||
return value.toString();
|
||||
case BigDecimal:
|
||||
return new BigDecimal(value.toString());
|
||||
case Integer:
|
||||
case UFFlag:
|
||||
return Integer.valueOf(value.toString());
|
||||
case UFDouble:
|
||||
return new UFDouble(value.toString());
|
||||
case UFBoolean:
|
||||
return new UFBoolean(value.toString());
|
||||
case UFDate:
|
||||
return new UFDate(value.toString());
|
||||
case UFDateTime:
|
||||
return new UFDateTime(value.toString());
|
||||
case UFTime:
|
||||
return new UFTime(value.toString());
|
||||
case UFLiteralDate:
|
||||
return new UFLiteralDate(value.toString());
|
||||
default:
|
||||
return value;
|
||||
}
|
||||
}
|
||||
|
||||
private List<String> getRequiredFields(JSONObject obj) {
|
||||
List<String> notNullFields = new ArrayList<String>();
|
||||
return notNullFields;
|
||||
}
|
||||
|
||||
private IBchangeMasterVOService getService() {
|
||||
return NCLocator.getInstance().lookup(IBchangeMasterVOService.class);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue