diff --git a/bchange/META-INF/bchange.rest b/bchange/META-INF/bchange.rest new file mode 100644 index 00000000..e6629a77 --- /dev/null +++ b/bchange/META-INF/bchange.rest @@ -0,0 +1,6 @@ + + + + + + diff --git a/bchange/META-INF/bchange_bchangemaster.upm b/bchange/META-INF/bchange_bchangemaster.upm new file mode 100644 index 00000000..bca556db --- /dev/null +++ b/bchange/META-INF/bchange_bchangemaster.upm @@ -0,0 +1,13 @@ + + + + + nccloud.api.mmbd.bchangemanage.bchangemaster.BchangeMasterManageResources + nccloud.api.mmbd.bchangemanage.bchangemaster.BchangeMasterManageResources + + + nc.itf.mmbd.bchange.bchangemaster.IBchangeMasterVOService + nc.impl.mmbd.bchange.bchangemaster.BchangeMasterVOServiceImpl + + + \ No newline at end of file diff --git a/bchange/component.xml b/bchange/component.xml new file mode 100644 index 00000000..c797a242 --- /dev/null +++ b/bchange/component.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/bchange/hotwebs/src/api/modules/mmbd/bchangemastermanage/BchangeMasterVO.md b/bchange/hotwebs/src/api/modules/mmbd/bchangemastermanage/BchangeMasterVO.md new file mode 100644 index 00000000..57429c60 --- /dev/null +++ b/bchange/hotwebs/src/api/modules/mmbd/bchangemastermanage/BchangeMasterVO.md @@ -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" +} +``` + diff --git a/bchange/script/allsql/allSql.sql b/bchange/script/allsql/allSql.sql new file mode 100644 index 00000000..d3920f6e --- /dev/null +++ b/bchange/script/allsql/allSql.sql @@ -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') +/ diff --git a/bchange/script/appregister/sm_appregister/sm_appregister_1001ZZ1000000NPH0ROY/001.sql b/bchange/script/appregister/sm_appregister/sm_appregister_1001ZZ1000000NPH0ROY/001.sql new file mode 100644 index 00000000..96d1f6cb --- /dev/null +++ b/bchange/script/appregister/sm_appregister/sm_appregister_1001ZZ1000000NPH0ROY/001.sql @@ -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) +/ diff --git a/bchange/script/appregister/sm_appregister/sm_appregister_1001ZZ1000000NPH0ROY/002.sql b/bchange/script/appregister/sm_appregister/sm_appregister_1001ZZ1000000NPH0ROY/002.sql new file mode 100644 index 00000000..d036f6cd --- /dev/null +++ b/bchange/script/appregister/sm_appregister/sm_appregister_1001ZZ1000000NPH0ROY/002.sql @@ -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) +/ diff --git a/bchange/script/appregister/sm_appregister/sm_appregister_1001ZZ1000000NPH0ROY/003.sql b/bchange/script/appregister/sm_appregister/sm_appregister_1001ZZ1000000NPH0ROY/003.sql new file mode 100644 index 00000000..78549235 --- /dev/null +++ b/bchange/script/appregister/sm_appregister/sm_appregister_1001ZZ1000000NPH0ROY/003.sql @@ -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) +/ diff --git a/bchange/script/business/opm_apimanager/opm_apimanager/001.sql b/bchange/script/business/opm_apimanager/opm_apimanager/001.sql new file mode 100644 index 00000000..440d3ec4 --- /dev/null +++ b/bchange/script/business/opm_apimanager/opm_apimanager/001.sql @@ -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') +/ diff --git a/bchange/script/conf/item.xml b/bchange/script/conf/item.xml new file mode 100644 index 00000000..392bd7ce --- /dev/null +++ b/bchange/script/conf/item.xml @@ -0,0 +1,47 @@ + + + + sm_appmenuitem + 应用菜单项注册 + sm_appmenuitem + + + + + menuitemcode in('10143699') + + + + sm_appregister + 应用注册 + sm_appregister + + + + + code in ('10H140BOMRECORD') + + + + opm_apimanager + OpenAPI + opm_apimanager + + + + + 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') + + + + pub_page_templet + 单据模板 + pub_page_templet + + + + + appcode in ('10H140BOMRECORD') + + + \ No newline at end of file diff --git a/bchange/script/dbcreate/DB2/00001/tb_tablecreate.sql b/bchange/script/dbcreate/DB2/00001/tb_tablecreate.sql new file mode 100644 index 00000000..a4f747c5 --- /dev/null +++ b/bchange/script/dbcreate/DB2/00001/tb_tablecreate.sql @@ -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) +) + + / diff --git a/bchange/script/dbcreate/ORACLE/00001/tb_tablecreate.sql b/bchange/script/dbcreate/ORACLE/00001/tb_tablecreate.sql new file mode 100644 index 00000000..bd649bac --- /dev/null +++ b/bchange/script/dbcreate/ORACLE/00001/tb_tablecreate.sql @@ -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) +) + + / diff --git a/bchange/script/dbcreate/SQLSERVER/00001/tb_tablecreate.sql b/bchange/script/dbcreate/SQLSERVER/00001/tb_tablecreate.sql new file mode 100644 index 00000000..826c1f03 --- /dev/null +++ b/bchange/script/dbcreate/SQLSERVER/00001/tb_tablecreate.sql @@ -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) +) + + / diff --git a/bchange/script/dbml/simpchn/opm_apimanager/001.csv b/bchange/script/dbml/simpchn/opm_apimanager/001.csv new file mode 100644 index 00000000..e7e6103c --- /dev/null +++ b/bchange/script/dbml/simpchn/opm_apimanager/001.csv @@ -0,0 +1,2 @@ +opm_apimanager +pk_api diff --git a/bchange/script/dbml/simpchn/pub_area/001.csv b/bchange/script/dbml/simpchn/pub_area/001.csv new file mode 100644 index 00000000..dfd218cf --- /dev/null +++ b/bchange/script/dbml/simpchn/pub_area/001.csv @@ -0,0 +1,4 @@ +pub_area +pk_area,name +1001ZZ1LCP000NPH2DL5,主实体_查询区 +1001ZZ1LCP000NPH2DL6,主实体 diff --git a/bchange/script/dbml/simpchn/pub_form_property/001.csv b/bchange/script/dbml/simpchn/pub_form_property/001.csv new file mode 100644 index 00000000..94ce2c07 --- /dev/null +++ b/bchange/script/dbml/simpchn/pub_form_property/001.csv @@ -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,组织多版本 diff --git a/bchange/script/dbml/simpchn/pub_page_templet/001.csv b/bchange/script/dbml/simpchn/pub_page_templet/001.csv new file mode 100644 index 00000000..cc0faae8 --- /dev/null +++ b/bchange/script/dbml/simpchn/pub_page_templet/001.csv @@ -0,0 +1,2 @@ +pub_page_templet +pk_page_templet diff --git a/bchange/script/dbml/simpchn/pub_query_property/001.csv b/bchange/script/dbml/simpchn/pub_query_property/001.csv new file mode 100644 index 00000000..10c8d44f --- /dev/null +++ b/bchange/script/dbml/simpchn/pub_query_property/001.csv @@ -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 diff --git a/bchange/script/dbml/simpchn/sm_appbutnregister/001.csv b/bchange/script/dbml/simpchn/sm_appbutnregister/001.csv new file mode 100644 index 00000000..e24e6322 --- /dev/null +++ b/bchange/script/dbml/simpchn/sm_appbutnregister/001.csv @@ -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 diff --git a/bchange/script/dbml/simpchn/sm_appmenuitem/001.csv b/bchange/script/dbml/simpchn/sm_appmenuitem/001.csv new file mode 100644 index 00000000..65c25d14 --- /dev/null +++ b/bchange/script/dbml/simpchn/sm_appmenuitem/001.csv @@ -0,0 +1,3 @@ +sm_appmenuitem +pk_menuitem,menuitemname +1001ZZ1000000NPH0ROZ,BOM变更通知 diff --git a/bchange/script/dbml/simpchn/sm_apppage/001.csv b/bchange/script/dbml/simpchn/sm_apppage/001.csv new file mode 100644 index 00000000..5db3c6ee --- /dev/null +++ b/bchange/script/dbml/simpchn/sm_apppage/001.csv @@ -0,0 +1,2 @@ +sm_apppage +pk_apppage diff --git a/bchange/script/dbml/simpchn/sm_appregister/001.csv b/bchange/script/dbml/simpchn/sm_appregister/001.csv new file mode 100644 index 00000000..29916300 --- /dev/null +++ b/bchange/script/dbml/simpchn/sm_appregister/001.csv @@ -0,0 +1,3 @@ +sm_appregister +pk_appregister,name +1001ZZ1000000NPH0ROY,BOM变更通知 diff --git a/bchange/script/menuitemreg/sm_appmenuitem/sm_appmenuitem_1001ZZ1000000NPH0ROZ/001.sql b/bchange/script/menuitemreg/sm_appmenuitem/sm_appmenuitem_1001ZZ1000000NPH0ROZ/001.sql new file mode 100644 index 00000000..a3457b65 --- /dev/null +++ b/bchange/script/menuitemreg/sm_appmenuitem/sm_appmenuitem_1001ZZ1000000NPH0ROZ/001.sql @@ -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) +/ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/001.sql b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/001.sql new file mode 100644 index 00000000..4479b404 --- /dev/null +++ b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/001.sql @@ -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) +/ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/001.sql-1001ZZ1LCP000NPH0RP2.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/001.sql-1001ZZ1LCP000NPH0RP2.blob new file mode 100644 index 00000000..3cb96c3d Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/001.sql-1001ZZ1LCP000NPH0RP2.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/002.sql b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/002.sql new file mode 100644 index 00000000..9c00c0c9 --- /dev/null +++ b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/002.sql @@ -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) +/ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/003.sql b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/003.sql new file mode 100644 index 00000000..c7e6bfbc --- /dev/null +++ b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/003.sql @@ -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) +/ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql new file mode 100644 index 00000000..a382d967 --- /dev/null +++ b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql @@ -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) +/ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPN.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPN.blob new file mode 100644 index 00000000..e6d524b8 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPN.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPO.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPO.blob new file mode 100644 index 00000000..e56659ea Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPO.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPP.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPP.blob new file mode 100644 index 00000000..ff519b94 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPP.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPQ.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPQ.blob new file mode 100644 index 00000000..fb4a6bd8 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPQ.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPR.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPR.blob new file mode 100644 index 00000000..9d08e8ee Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPR.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPS.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPS.blob new file mode 100644 index 00000000..e4df0891 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPS.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPT.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPT.blob new file mode 100644 index 00000000..10649e23 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPT.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPU.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPU.blob new file mode 100644 index 00000000..f191eee8 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPU.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPV.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPV.blob new file mode 100644 index 00000000..87ecae0b Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPV.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPW.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPW.blob new file mode 100644 index 00000000..3681c107 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPW.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPX.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPX.blob new file mode 100644 index 00000000..b895dca0 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH0RP2/004.sql-1001ZZ1LCP000NPH0RPX.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/001.sql b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/001.sql new file mode 100644 index 00000000..50f4af92 --- /dev/null +++ b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/001.sql @@ -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) +/ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/001.sql-1001ZZ1LCP000NPH2DJT.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/001.sql-1001ZZ1LCP000NPH2DJT.blob new file mode 100644 index 00000000..7d237d0f Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/001.sql-1001ZZ1LCP000NPH2DJT.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/002.sql b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/002.sql new file mode 100644 index 00000000..7f002332 --- /dev/null +++ b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/002.sql @@ -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) +/ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/003.sql b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/003.sql new file mode 100644 index 00000000..0a166ab6 --- /dev/null +++ b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/003.sql @@ -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) +/ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql new file mode 100644 index 00000000..4daef504 --- /dev/null +++ b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql @@ -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) +/ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKE.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKE.blob new file mode 100644 index 00000000..5d6f7183 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKE.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKF.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKF.blob new file mode 100644 index 00000000..0093cd23 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKF.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKG.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKG.blob new file mode 100644 index 00000000..69ec5c73 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKG.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKH.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKH.blob new file mode 100644 index 00000000..66f2b7df Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKH.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKI.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKI.blob new file mode 100644 index 00000000..d07e686b Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKI.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKJ.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKJ.blob new file mode 100644 index 00000000..08427f06 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKJ.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKK.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKK.blob new file mode 100644 index 00000000..aff9d142 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKK.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKL.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKL.blob new file mode 100644 index 00000000..061b0b47 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKL.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKM.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKM.blob new file mode 100644 index 00000000..9a2f495c Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKM.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKN.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKN.blob new file mode 100644 index 00000000..9683e5e3 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKN.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKO.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKO.blob new file mode 100644 index 00000000..c985ac6c Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DJT/004.sql-1001ZZ1LCP000NPH2DKO.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/001.sql b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/001.sql new file mode 100644 index 00000000..287edc5a --- /dev/null +++ b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/001.sql @@ -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) +/ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/001.sql-1001ZZ1LCP000NPH2DKW.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/001.sql-1001ZZ1LCP000NPH2DKW.blob new file mode 100644 index 00000000..3d1908d6 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/001.sql-1001ZZ1LCP000NPH2DKW.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/002.sql b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/002.sql new file mode 100644 index 00000000..c5d9eb20 --- /dev/null +++ b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/002.sql @@ -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) +/ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/003.sql b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/003.sql new file mode 100644 index 00000000..b2f01f5c --- /dev/null +++ b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/003.sql @@ -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) +/ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql new file mode 100644 index 00000000..d297bd31 --- /dev/null +++ b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql @@ -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) +/ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLH.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLH.blob new file mode 100644 index 00000000..f0917ebf Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLH.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLI.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLI.blob new file mode 100644 index 00000000..a4b4419f Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLI.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLJ.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLJ.blob new file mode 100644 index 00000000..1039edc8 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLJ.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLK.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLK.blob new file mode 100644 index 00000000..9b3fedc1 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLK.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLL.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLL.blob new file mode 100644 index 00000000..34428d5e Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLL.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLM.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLM.blob new file mode 100644 index 00000000..9d8196b4 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLM.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLN.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLN.blob new file mode 100644 index 00000000..eeeae5c0 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLN.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLO.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLO.blob new file mode 100644 index 00000000..3af4b236 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLO.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLP.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLP.blob new file mode 100644 index 00000000..769131b3 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLP.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLQ.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLQ.blob new file mode 100644 index 00000000..ae12a0d0 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLQ.blob differ diff --git a/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLR.blob b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLR.blob new file mode 100644 index 00000000..8461cb79 Binary files /dev/null and b/bchange/script/pagetemplet/pub_page_templet/pub_page_templet_1001ZZ1LCP000NPH2DKW/004.sql-1001ZZ1LCP000NPH2DLR.blob differ diff --git a/bchange/src/client/nccloud/web/mmbd/bchange/bchangemaster/action/AddBchangeMasterVOAction.java b/bchange/src/client/nccloud/web/mmbd/bchange/bchangemaster/action/AddBchangeMasterVOAction.java new file mode 100644 index 00000000..a6b02b62 --- /dev/null +++ b/bchange/src/client/nccloud/web/mmbd/bchange/bchangemaster/action/AddBchangeMasterVOAction.java @@ -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 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); + + } +} + + diff --git a/bchange/src/client/nccloud/web/mmbd/bchange/bchangemaster/action/ListBchangeMasterVOAction.java b/bchange/src/client/nccloud/web/mmbd/bchange/bchangemaster/action/ListBchangeMasterVOAction.java new file mode 100644 index 00000000..bd604ad7 --- /dev/null +++ b/bchange/src/client/nccloud/web/mmbd/bchange/bchangemaster/action/ListBchangeMasterVOAction.java @@ -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); + } + + +} diff --git a/bchange/src/client/nccloud/web/mmbd/bchange/bchangemaster/action/SaveBchangeMasterVOAction.java b/bchange/src/client/nccloud/web/mmbd/bchange/bchangemaster/action/SaveBchangeMasterVOAction.java new file mode 100644 index 00000000..cca8fc2a --- /dev/null +++ b/bchange/src/client/nccloud/web/mmbd/bchange/bchangemaster/action/SaveBchangeMasterVOAction.java @@ -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; + + } +} diff --git a/bchange/src/client/yyconfig/modules/mmbd/bchange/bchangeMaster/config/action/bchangeMaster_action.xml b/bchange/src/client/yyconfig/modules/mmbd/bchange/bchangeMaster/config/action/bchangeMaster_action.xml new file mode 100644 index 00000000..9176d25a --- /dev/null +++ b/bchange/src/client/yyconfig/modules/mmbd/bchange/bchangeMaster/config/action/bchangeMaster_action.xml @@ -0,0 +1,18 @@ + + + + mmbd.bchange.SaveBchangeMasterVOAction + + nccloud.web.mmbd.bchange.bchangemaster.action.SaveBchangeMasterVOAction + + + mmbd.bchange.ListBchangeMasterVOAction + + nccloud.web.mmbd.bchange.bchangemaster.action.ListBchangeMasterVOAction + + + mmbd.bchange.AddBchangeMasterVOAction + + nccloud.web.mmbd.bchange.bchangemaster.action.AddBchangeMasterVOAction + + \ No newline at end of file diff --git a/bchange/src/client/yyconfig/modules/mmbd/bchange/bchangeMaster/config/authorize/bchangeMaster_authorize.xml b/bchange/src/client/yyconfig/modules/mmbd/bchange/bchangeMaster/config/authorize/bchangeMaster_authorize.xml new file mode 100644 index 00000000..839f733a --- /dev/null +++ b/bchange/src/client/yyconfig/modules/mmbd/bchange/bchangeMaster/config/authorize/bchangeMaster_authorize.xml @@ -0,0 +1,11 @@ + + + + * + + mmbd.bchange.SaveBchangeMasterVOAction + mmbd.bchange.ListBchangeMasterVOAction + mmbd.bchange.AddBchangeMasterVOAction + + + \ No newline at end of file diff --git a/bchange/src/private/nc/impl/mmbd/bchange/bchangemaster/BchangeMasterVOServiceImpl.java b/bchange/src/private/nc/impl/mmbd/bchange/bchangemaster/BchangeMasterVOServiceImpl.java new file mode 100644 index 00000000..c97f088b --- /dev/null +++ b/bchange/src/private/nc/impl/mmbd/bchange/bchangemaster/BchangeMasterVOServiceImpl.java @@ -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 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 userJson) throws BusinessException{ + + getMainVO(vo).setStatus(VOStatus.NEW); + initDefaultData((BchangeMasterVO)getMainVO(vo)); + String pk_org = InvocationInfoProxy.getInstance().getGroupId(); + + //ҪжǷ + Map data = userJson!=null && userJson.get("data") != null?(Map)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 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 tsMap) throws BusinessException{ + return deleteBchangeMasterVOs(tsMap, null); + } + @Override + public BchangeMasterVO[] deleteBchangeMasterVOs(Map 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 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[] loadTreeData(Class clazz,Map userJson) throws BusinessException{ + String condition = "dr = 0 "; + + return dao.listByCondition(clazz, condition, false); + } + + + +} diff --git a/bchange/src/public/nc/itf/mmbd/bchange/bchangemaster/IBchangeMasterVOService.java b/bchange/src/public/nc/itf/mmbd/bchange/bchangemaster/IBchangeMasterVOService.java new file mode 100644 index 00000000..29350353 --- /dev/null +++ b/bchange/src/public/nc/itf/mmbd/bchange/bchangemaster/IBchangeMasterVOService.java @@ -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 userJson) throws BusinessException; + + public BchangeMasterVO preAddBchangeMasterVO(BchangeMasterVO vo,Map 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 tsMap) throws BusinessException; + public BchangeMasterVO[] deleteBchangeMasterVOs(Map tsMap, String nodetype) throws BusinessException; + + /** + * ʵ + * @param vos + * @return @ + */ + public T[] loadTreeData(Class clazz,Map userJson) throws BusinessException; + + +} diff --git a/bchange/src/public/nc/vo/bchange/bchange/BchangeMasterVO.java b/bchange/src/public/nc/vo/bchange/bchange/BchangeMasterVO.java new file mode 100644 index 00000000..12ccc552 --- /dev/null +++ b/bchange/src/public/nc/vo/bchange/bchange/BchangeMasterVO.java @@ -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"; + + /** + * nameSetter. + * :2025-08-26 + * @param newName java.lang.String + */ + public void setPk_bchangemaster(java.lang.String pk_bchangemaster){ + this.pk_bchangemaster = pk_bchangemaster; + } + /** + * nameGetter. + * :2025-08-26 + * @return java.lang.String + */ + public java.lang.String getPk_bchangemaster(){ + return this.pk_bchangemaster; + } + + /** + * nameSetter.code + * :2025-08-26 + * @param newName java.lang.String + */ + public void setCode(java.lang.String code){ + this.code = code; + } + /** + * nameGetter.code + * :2025-08-26 + * @return java.lang.String + */ + public java.lang.String getCode(){ + return this.code; + } + + /** + * nameSetter.name + * :2025-08-26 + * @param newName java.lang.String + */ + public void setName(java.lang.String name){ + this.name = name; + } + /** + * nameGetter.name + * :2025-08-26 + * @return java.lang.String + */ + public java.lang.String getName(){ + return this.name; + } + + /** + * nameSetter.ʩ + * :2025-08-26 + * @param newName java.lang.String + */ + public void setBillno(java.lang.String billno){ + this.billno = billno; + } + /** + * nameGetter.ʩ + * :2025-08-26 + * @return java.lang.String + */ + public java.lang.String getBillno(){ + return this.billno; + } + + /** + * nameSetter. + * :2025-08-26 + * @param newName java.lang.String + */ + public void setParent_no(java.lang.String parent_no){ + this.parent_no = parent_no; + } + /** + * nameGetter. + * :2025-08-26 + * @return java.lang.String + */ + public java.lang.String getParent_no(){ + return this.parent_no; + } + + /** + * nameSetter. + * :2025-08-26 + * @param newName java.lang.String + */ + public void setChild_no(java.lang.String child_no){ + this.child_no = child_no; + } + /** + * nameGetter. + * :2025-08-26 + * @return java.lang.String + */ + public java.lang.String getChild_no(){ + return this.child_no; + } + + /** + * nameSetter.ǰ + * :2025-08-26 + * @param newName java.lang.String + */ + public void setBefore_num(java.lang.String before_num){ + this.before_num = before_num; + } + /** + * nameGetter.ǰ + * :2025-08-26 + * @return java.lang.String + */ + public java.lang.String getBefore_num(){ + return this.before_num; + } + + /** + * nameSetter. + * :2025-08-26 + * @param newName java.lang.String + */ + public void setAfter_num(java.lang.String after_num){ + this.after_num = after_num; + } + /** + * nameGetter. + * :2025-08-26 + * @return java.lang.String + */ + public java.lang.String getAfter_num(){ + return this.after_num; + } + + /** + * nameSetter.pk_org + * :2025-08-26 + * @param newName java.lang.String + */ + public void setPk_org(java.lang.String pk_org){ + this.pk_org = pk_org; + } + /** + * nameGetter.pk_org + * :2025-08-26 + * @return java.lang.String + */ + public java.lang.String getPk_org(){ + return this.pk_org; + } + + /** + * nameSetter.pk_group + * :2025-08-26 + * @param newName java.lang.String + */ + public void setPk_group(java.lang.String pk_group){ + this.pk_group = pk_group; + } + /** + * nameGetter.pk_group + * :2025-08-26 + * @return java.lang.String + */ + public java.lang.String getPk_group(){ + return this.pk_group; + } + + /** + * nameSetter.֯汾 + * :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; + } + /** + * nameGetter.֯汾 + * :2025-08-26 + * @return java.lang.String + */ + public java.lang.String getPk_org_v(){ + return this.pk_org_v; + } + + /** + * nameSetter.dr + * :2025-08-26 + * @param newName java.lang.Integer + */ + public void setDr(java.lang.Integer dr){ + this.dr = dr; + } + /** + * nameGetter.dr + * :2025-08-26 + * @return java.lang.Integer + */ + public java.lang.Integer getDr(){ + return this.dr; + } + + /** + * nameSetter.ts + * :2025-08-26 + * @param newName nc.vo.pub.lang.UFDateTime + */ + public void setTs(nc.vo.pub.lang.UFDateTime ts){ + this.ts = ts; + } + /** + * nameGetter.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"; + } + + /** + *

ر. + *

+ * : + * @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"); + } + +} diff --git a/bchange/src/public/nccloud/api/mmbd/bchangemanage/bchangemaster/BchangeMasterManageResources.java b/bchange/src/public/nccloud/api/mmbd/bchangemanage/bchangemaster/BchangeMasterManageResources.java new file mode 100644 index 00000000..a4f99e98 --- /dev/null +++ b/bchange/src/public/nccloud/api/mmbd/bchangemanage/bchangemaster/BchangeMasterManageResources.java @@ -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 fieldsNameAndType = new HashMap<>(); + + private Map> 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 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> entrySet = obj.entrySet(); + Iterator> iterator = entrySet.iterator(); + while(iterator.hasNext()) { + Entry 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 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 getRequiredFields(JSONObject obj) { + List notNullFields = new ArrayList(); + return notNullFields; + } + + private IBchangeMasterVOService getService() { + return NCLocator.getInstance().lookup(IBchangeMasterVOService.class); + } + +} +