DROP TABLE IF EXISTS "blade_bas_coderule"; CREATE TABLE "blade_bas_coderule" ( "id" BIGINT NOT NULL, "name" VARCHAR(255), "remark" VARCHAR(255), "bill_form_id" VARCHAR(36), "system_default" TINYINT, "auto_billno" TINYINT, "repair_billno" TINYINT, "const_length" TINYINT, "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), "status" INT, "is_deleted" INT, "rule_field_dict_key" VARCHAR(255), "preview" VARCHAR(255), NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON COLUMN "blade_bas_coderule"."auto_billno" IS '自动补号'; COMMENT ON COLUMN "blade_bas_coderule"."bill_form_id" IS '业务对象'; COMMENT ON COLUMN "blade_bas_coderule"."const_length" IS '是否是固定的流水号位数'; COMMENT ON COLUMN "blade_bas_coderule"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_bas_coderule"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_bas_coderule"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_bas_coderule"."id" IS '主键'; COMMENT ON COLUMN "blade_bas_coderule"."name" IS '规则名称'; COMMENT ON COLUMN "blade_bas_coderule"."remark" IS '编码规则描述'; COMMENT ON COLUMN "blade_bas_coderule"."repair_billno" IS '手动补号'; COMMENT ON COLUMN "blade_bas_coderule"."status" IS '数据状态 0,暂存 1,创建 2,审核中 3,已审核 4,重新审核'; COMMENT ON COLUMN "blade_bas_coderule"."system_default" IS '系统预设'; COMMENT ON COLUMN "blade_bas_coderule"."update_time" IS '修改时间'; COMMENT ON COLUMN "blade_bas_coderule"."update_user" IS '修改人'; COMMENT ON COLUMN "blade_bas_coderule"."rule_field_dict_key" IS '绑定的规则分类字段的字典值'; COMMENT ON COLUMN "blade_bas_coderule"."preview" IS '预览的编码'; DROP TABLE IF EXISTS "blade_bas_coderule_entry"; CREATE TABLE "blade_bas_coderule_entry" ( "id" BIGINT NOT NULL, "rule_id" BIGINT NOT NULL, "seq" INT NOT NULL, "element_type" INT NOT NULL, "element_source" VARCHAR(30), "source_property" SMALLINT, "length" SMALLINT, "format" VARCHAR(20), "element_value" VARCHAR(255), "seed" INT, "increment_step" INT, "separator_char" VARCHAR(1), "re_char" VARCHAR(1), "add_char" VARCHAR(1), "cut_style" TINYINT, "add_style" TINYINT, "code_only_by" TINYINT, "code_element" TINYINT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON COLUMN "blade_bas_coderule_entry"."add_char" IS '补位符'; COMMENT ON COLUMN "blade_bas_coderule_entry"."add_style" IS '右侧填充'; COMMENT ON COLUMN "blade_bas_coderule_entry"."code_element" IS '编码元素'; COMMENT ON COLUMN "blade_bas_coderule_entry"."code_only_by" IS '编码依据'; COMMENT ON COLUMN "blade_bas_coderule_entry"."cut_style" IS '右侧截断'; COMMENT ON COLUMN "blade_bas_coderule_entry"."element_source" IS '元素来源'; COMMENT ON COLUMN "blade_bas_coderule_entry"."element_type" IS '元素类型'; COMMENT ON COLUMN "blade_bas_coderule_entry"."element_value" IS '设置值'; COMMENT ON COLUMN "blade_bas_coderule_entry"."format" IS '格式'; COMMENT ON COLUMN "blade_bas_coderule_entry"."id" IS '主键'; COMMENT ON COLUMN "blade_bas_coderule_entry"."increment_step" IS '步长'; COMMENT ON COLUMN "blade_bas_coderule_entry"."length" IS '长度'; COMMENT ON COLUMN "blade_bas_coderule_entry"."re_char" IS '替代符'; COMMENT ON COLUMN "blade_bas_coderule_entry"."rule_id" IS '编码规则id'; COMMENT ON COLUMN "blade_bas_coderule_entry"."seed" IS '起始值'; COMMENT ON COLUMN "blade_bas_coderule_entry"."separator_char" IS '分隔符'; COMMENT ON COLUMN "blade_bas_coderule_entry"."seq" IS '序号'; COMMENT ON COLUMN "blade_bas_coderule_entry"."source_property" IS '来源属性'; DROP TABLE IF EXISTS "blade_dict"; CREATE TABLE "blade_dict" ( "id" BIGINT NOT NULL, "parent_id" BIGINT DEFAULT 0, "code" VARCHAR(255), "dict_key" VARCHAR(255), "dict_value" VARCHAR(255), "sort" INT, "remark" VARCHAR(255), "is_sealed" INT DEFAULT 0, "is_deleted" INT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_dict" IS '字典表'; COMMENT ON COLUMN "blade_dict"."code" IS '字典码'; COMMENT ON COLUMN "blade_dict"."dict_key" IS '字典值'; COMMENT ON COLUMN "blade_dict"."dict_value" IS '字典名称'; COMMENT ON COLUMN "blade_dict"."id" IS '主键'; COMMENT ON COLUMN "blade_dict"."is_sealed" IS '是否已封存'; COMMENT ON COLUMN "blade_dict"."parent_id" IS '父主键'; COMMENT ON COLUMN "blade_dict"."remark" IS '字典备注'; COMMENT ON COLUMN "blade_dict"."sort" IS '排序'; DROP TABLE IF EXISTS "blade_dict_biz"; CREATE TABLE "blade_dict_biz" ( "id" BIGINT NOT NULL, "tenant_id" VARCHAR(12), "parent_id" BIGINT DEFAULT 0, "code" VARCHAR(255), "dict_key" VARCHAR(255), "dict_value" VARCHAR(255), "sort" INT, "remark" VARCHAR(255), "is_sealed" INT DEFAULT 0, "is_deleted" INT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_dict_biz" IS '业务字典表'; COMMENT ON COLUMN "blade_dict_biz"."code" IS '字典码'; COMMENT ON COLUMN "blade_dict_biz"."dict_key" IS '字典值'; COMMENT ON COLUMN "blade_dict_biz"."dict_value" IS '字典名称'; COMMENT ON COLUMN "blade_dict_biz"."id" IS '主键'; COMMENT ON COLUMN "blade_dict_biz"."is_sealed" IS '是否已封存'; COMMENT ON COLUMN "blade_dict_biz"."parent_id" IS '父主键'; COMMENT ON COLUMN "blade_dict_biz"."remark" IS '字典备注'; COMMENT ON COLUMN "blade_dict_biz"."sort" IS '排序'; COMMENT ON COLUMN "blade_dict_biz"."tenant_id" IS '租户ID'; DROP TABLE IF EXISTS "blade_common_group_of_item"; CREATE TABLE "blade_common_group_of_item" ( "id" BIGINT NOT NULL, "group_id" BIGINT NOT NULL, "item_id" BIGINT NOT NULL, "extend_id" VARCHAR(64), "group_type" VARCHAR(45), "group_category" TINYINT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_common_group_of_item" IS '工位组'; COMMENT ON COLUMN "blade_common_group_of_item"."extend_id" IS '扩展ID'; COMMENT ON COLUMN "blade_common_group_of_item"."group_category" IS '组子类,对应字典项'; COMMENT ON COLUMN "blade_common_group_of_item"."group_type" IS '组别, 对应字典编号'; CREATE INDEX "INDEX1657856130004" ON "blade_common_group_of_item" ("item_id" ASC) STORAGE(ON "MAIN", CLUSTERBTR); CREATE INDEX "INDEX1657856130005" ON "blade_common_group_of_item" ("group_id" ASC) STORAGE(ON "MAIN", CLUSTERBTR); DROP TABLE IF EXISTS "blade_attach"; CREATE TABLE "blade_attach" ( "id" BIGINT NOT NULL, "tenant_id" VARCHAR(12) DEFAULT '000000', "link" VARCHAR(1000), "domain_name" VARCHAR(500), "name" VARCHAR(500), "original_name" VARCHAR(500), "extension" VARCHAR(12), "attach_size" BIGINT, "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), "status" INT, "is_deleted" INT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_attach" IS '附件表'; COMMENT ON COLUMN "blade_attach"."attach_size" IS '附件大小'; COMMENT ON COLUMN "blade_attach"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_attach"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_attach"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_attach"."domain_name" IS '附件域名'; COMMENT ON COLUMN "blade_attach"."extension" IS '附件拓展名'; COMMENT ON COLUMN "blade_attach"."id" IS '主键'; COMMENT ON COLUMN "blade_attach"."link" IS '附件地址'; COMMENT ON COLUMN "blade_attach"."name" IS '附件名称'; COMMENT ON COLUMN "blade_attach"."original_name" IS '附件原名'; COMMENT ON COLUMN "blade_attach"."status" IS '状态'; COMMENT ON COLUMN "blade_attach"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "blade_attach"."update_time" IS '修改时间'; COMMENT ON COLUMN "blade_attach"."update_user" IS '修改人'; DROP TABLE IF EXISTS "blade_dmp_driver_config"; CREATE TABLE "blade_dmp_driver_config" ( "id" BIGINT IDENTITY(114, 1) NOT NULL, "dmp_device_id" VARCHAR(36) NOT NULL, "name" VARCHAR(36) NOT NULL, "value" TEXT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON COLUMN "blade_dmp_driver_config"."dmp_device_id" IS 'dmp 设备'; COMMENT ON COLUMN "blade_dmp_driver_config"."name" IS '驱动项配置名称'; COMMENT ON COLUMN "blade_dmp_driver_config"."value" IS '驱动项值'; DROP TABLE IF EXISTS "blade_dmp_instance_of_machine"; CREATE TABLE "blade_dmp_instance_of_machine" ( "id" BIGINT NOT NULL, "dmp_instance" VARCHAR(12), "dmp_device_id" VARCHAR(36) NOT NULL, "machine_id" BIGINT NOT NULL, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_dmp_instance_of_machine" IS '采集的机器'; COMMENT ON COLUMN "blade_dmp_instance_of_machine"."dmp_device_id" IS 'dmp 设备'; COMMENT ON COLUMN "blade_dmp_instance_of_machine"."dmp_instance" IS 'dmp 实例标识,实例信息配置在系统参数表中'; COMMENT ON COLUMN "blade_dmp_instance_of_machine"."machine_id" IS 'cps 机器'; DROP TABLE IF EXISTS "blade_dmp_variables"; CREATE TABLE "blade_dmp_variables" ( "id" BIGINT IDENTITY(499, 1) NOT NULL, "dmp_id" VARCHAR(36) NOT NULL, "dmp_device_id" VARCHAR(36) NOT NULL, "machine_id" BIGINT NOT NULL, "dmp_type" INT NOT NULL, "name" VARCHAR(255) NOT NULL, "description" TEXT NOT NULL, "device_address" TEXT NOT NULL, "dmp_access" INT NOT NULL, "data_length" INT NOT NULL, "value_factor" DOUBLE NOT NULL, "data_type" INT NOT NULL, "method_param" TEXT, "idx" INT DEFAULT 0 NOT NULL, "default_value" VARCHAR(255), NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_dmp_variables" IS '采集项'; COMMENT ON COLUMN "blade_dmp_variables"."dmp_access" IS '是否可写入,1只读,2读写'; COMMENT ON COLUMN "blade_dmp_variables"."data_length" IS '数据长度,未使用'; COMMENT ON COLUMN "blade_dmp_variables"."data_type" IS '数据类型'; COMMENT ON COLUMN "blade_dmp_variables"."default_value" IS '默认值'; COMMENT ON COLUMN "blade_dmp_variables"."description" IS '字段描述'; COMMENT ON COLUMN "blade_dmp_variables"."device_address" IS '数据项采集地址,默认地址可只存在参数。例如 Item(A) = A'; COMMENT ON COLUMN "blade_dmp_variables"."dmp_device_id" IS 'DMP设备'; COMMENT ON COLUMN "blade_dmp_variables"."idx" IS '索引顺序'; COMMENT ON COLUMN "blade_dmp_variables"."machine_id" IS 'CPS设备'; COMMENT ON COLUMN "blade_dmp_variables"."method_param" IS '参数,未使用'; COMMENT ON COLUMN "blade_dmp_variables"."name" IS '字段名称'; COMMENT ON COLUMN "blade_dmp_variables"."dmp_type" IS '类型,未使用,为0'; COMMENT ON COLUMN "blade_dmp_variables"."value_factor" IS '数据倍率'; DROP TABLE IF EXISTS "blade_global_wcs"; CREATE TABLE "BLADE_GLOBAL_WCS" ( "CODE" VARCHAR(3) NOT NULL, "NAME" VARCHAR(64) NOT NULL, "TYPE" TINYINT DEFAULT 1 NOT NULL, "EFFECT" TINYINT DEFAULT 1 NOT NULL, "PRIORITY" INT DEFAULT 99 NOT NULL, "REMARK" VARCHAR(256), "COLOR" VARCHAR(12), "SEQ" INT ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "BLADE_GLOBAL_WCS" IS '全局工况'; COMMENT ON COLUMN "BLADE_GLOBAL_WCS"."CODE" IS '状态码'; COMMENT ON COLUMN "BLADE_GLOBAL_WCS"."COLOR" IS '颜色'; COMMENT ON COLUMN "BLADE_GLOBAL_WCS"."EFFECT" IS '0消除,1标记'; COMMENT ON COLUMN "BLADE_GLOBAL_WCS"."NAME" IS '名称'; COMMENT ON COLUMN "BLADE_GLOBAL_WCS"."PRIORITY" IS '优先级'; COMMENT ON COLUMN "BLADE_GLOBAL_WCS"."TYPE" IS '1系统默认,2业务逻辑,4反馈'; DROP TABLE IF EXISTS "blade_sms"; CREATE TABLE "blade_sms" ( "id" BIGINT NOT NULL, "tenant_id" VARCHAR(12) DEFAULT '000000', "category" INT, "sms_code" VARCHAR(32), "template_id" VARCHAR(64), "access_key" VARCHAR(255), "secret_key" VARCHAR(255), "region_id" VARCHAR(255), "sign_name" VARCHAR(64), "remark" VARCHAR(255), "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), "status" INT, "is_deleted" INT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_sms" IS '短信配置表'; COMMENT ON COLUMN "blade_sms"."access_key" IS 'accessKey'; COMMENT ON COLUMN "blade_sms"."category" IS '分类'; COMMENT ON COLUMN "blade_sms"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_sms"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_sms"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_sms"."id" IS '主键'; COMMENT ON COLUMN "blade_sms"."region_id" IS 'regionId'; COMMENT ON COLUMN "blade_sms"."remark" IS '备注'; COMMENT ON COLUMN "blade_sms"."secret_key" IS 'secretKey'; COMMENT ON COLUMN "blade_sms"."sign_name" IS '短信签名'; COMMENT ON COLUMN "blade_sms"."sms_code" IS '资源编号'; COMMENT ON COLUMN "blade_sms"."status" IS '状态'; COMMENT ON COLUMN "blade_sms"."template_id" IS '模板ID'; COMMENT ON COLUMN "blade_sms"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "blade_sms"."update_time" IS '修改时间'; COMMENT ON COLUMN "blade_sms"."update_user" IS '修改人'; DROP TABLE IF EXISTS "blade_business_notify"; CREATE TABLE "blade_business_notify" ( "id" BIGINT NOT NULL, "business_name" VARCHAR(255), "business_key" VARCHAR(255) NOT NULL, "notify_type" VARCHAR(255) NOT NULL, "notify_id" VARCHAR(255) NOT NULL, "notify_template_id" VARCHAR(64) NOT NULL, "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), "status" INT, "tenant_id" VARCHAR(12) DEFAULT '000000', "is_deleted" INT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_business_notify" IS '业务通知表'; COMMENT ON COLUMN "blade_business_notify"."business_key" IS '业务key'; COMMENT ON COLUMN "blade_business_notify"."business_name" IS '业务名称'; COMMENT ON COLUMN "blade_business_notify"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_business_notify"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_business_notify"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_business_notify"."id" IS '主键'; COMMENT ON COLUMN "blade_business_notify"."notify_id" IS '通知配置'; COMMENT ON COLUMN "blade_business_notify"."notify_template_id" IS '通知模板'; COMMENT ON COLUMN "blade_business_notify"."notify_type" IS '通知类型'; COMMENT ON COLUMN "blade_business_notify"."status" IS '状态'; COMMENT ON COLUMN "blade_business_notify"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "blade_business_notify"."update_time" IS '修改时间'; COMMENT ON COLUMN "blade_business_notify"."update_user" IS '修改人'; DROP TABLE IF EXISTS "blade_business_notify_state"; CREATE TABLE "blade_business_notify_state" ( "id" BIGINT NOT NULL, "tenant_id" VARCHAR(12) DEFAULT '000000', "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), "status" INT, "is_deleted" INT, "business_key" VARCHAR(255), "business_id" BIGINT, "person_id" BIGINT, "person_type" INT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_business_notify_state" IS '业务通知状态表'; COMMENT ON COLUMN "blade_business_notify_state"."business_key" IS '业务key'; COMMENT ON COLUMN "blade_business_notify_state"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_business_notify_state"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_business_notify_state"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_business_notify_state"."id" IS '主键'; COMMENT ON COLUMN "blade_business_notify_state"."status" IS '状态'; COMMENT ON COLUMN "blade_business_notify_state"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "blade_business_notify_state"."update_time" IS '修改时间'; COMMENT ON COLUMN "blade_business_notify_state"."update_user" IS '修改人'; DROP TABLE IF EXISTS "blade_notify_default_person"; CREATE TABLE "blade_notify_default_person" ( "id" BIGINT NOT NULL, "tenant_id" VARCHAR(12) DEFAULT '000000', "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), "status" INT, "is_deleted" INT, "business_key" VARCHAR(255), "person_id" BIGINT, "person_type" INT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_notify_default_person" IS '报表默认对象'; COMMENT ON COLUMN "blade_notify_default_person"."business_key" IS '业务key'; COMMENT ON COLUMN "blade_notify_default_person"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_notify_default_person"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_notify_default_person"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_notify_default_person"."id" IS '主键'; COMMENT ON COLUMN "blade_notify_default_person"."person_id" IS '对象id'; COMMENT ON COLUMN "blade_notify_default_person"."person_type" IS '员工/部门'; COMMENT ON COLUMN "blade_notify_default_person"."status" IS '状态'; COMMENT ON COLUMN "blade_notify_default_person"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "blade_notify_default_person"."update_time" IS '修改时间'; COMMENT ON COLUMN "blade_notify_default_person"."update_user" IS '修改人'; DROP TABLE IF EXISTS "blade_log_usual"; CREATE TABLE "blade_log_usual" ( "id" BIGINT NOT NULL, "tenant_id" VARCHAR(12) DEFAULT '000000', "service_id" VARCHAR(32), "server_host" VARCHAR(255), "server_ip" VARCHAR(255), "env" VARCHAR(255), "log_level" VARCHAR(10), "log_id" VARCHAR(100), "log_data" TEXT, "method" VARCHAR(10), "request_uri" VARCHAR(255), "remote_ip" VARCHAR(255), "method_class" VARCHAR(255), "method_name" VARCHAR(255), "user_agent" VARCHAR(1000), "params" TEXT, "create_by" VARCHAR(64), "create_time" TIMESTAMP(0) DEFAULT CURRENT_TIMESTAMP(), NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_log_usual" IS '通用日志表'; COMMENT ON COLUMN "blade_log_usual"."create_by" IS '创建者'; COMMENT ON COLUMN "blade_log_usual"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_log_usual"."env" IS '系统环境'; COMMENT ON COLUMN "blade_log_usual"."id" IS '编号'; COMMENT ON COLUMN "blade_log_usual"."log_data" IS '日志数据'; COMMENT ON COLUMN "blade_log_usual"."log_id" IS '日志业务id'; COMMENT ON COLUMN "blade_log_usual"."log_level" IS '日志级别'; COMMENT ON COLUMN "blade_log_usual"."method" IS '操作方式'; COMMENT ON COLUMN "blade_log_usual"."method_class" IS '方法类'; COMMENT ON COLUMN "blade_log_usual"."method_name" IS '方法名'; COMMENT ON COLUMN "blade_log_usual"."params" IS '操作提交的数据'; COMMENT ON COLUMN "blade_log_usual"."remote_ip" IS '操作IP地址'; COMMENT ON COLUMN "blade_log_usual"."request_uri" IS '请求URI'; COMMENT ON COLUMN "blade_log_usual"."server_host" IS '服务器名'; COMMENT ON COLUMN "blade_log_usual"."server_ip" IS '服务器IP地址'; COMMENT ON COLUMN "blade_log_usual"."service_id" IS '服务ID'; COMMENT ON COLUMN "blade_log_usual"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "blade_log_usual"."user_agent" IS '用户代理'; DROP TABLE IF EXISTS "blade_meta_object_type"; CREATE TABLE "BLADE_META_OBJECT_TYPE" ( "F_ID" VARCHAR(36) NOT NULL, "NAME" VARCHAR(255), "MODEL_TYPE_ID" INT, "SUBSYS_ID" VARCHAR(255), "TABLE_NAME" VARCHAR(255), "REF_CODE" VARCHAR(255), "REF_NAME" VARCHAR(255), "PRIMARY_KEY" VARCHAR(255), "RULE_FIELD" VARCHAR(255), "RULE_DICT_CODE" VARCHAR(255), "CODE" VARCHAR(255), NOT CLUSTER PRIMARY KEY ("F_ID") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON COLUMN "BLADE_META_OBJECT_TYPE"."CODE" IS '业务对象编码字段'; COMMENT ON COLUMN "BLADE_META_OBJECT_TYPE"."F_ID" IS '业务对象编码'; COMMENT ON COLUMN "BLADE_META_OBJECT_TYPE"."MODEL_TYPE_ID" IS '领域模型类型编码'; COMMENT ON COLUMN "BLADE_META_OBJECT_TYPE"."NAME" IS '业务对象名称'; COMMENT ON COLUMN "BLADE_META_OBJECT_TYPE"."PRIMARY_KEY" IS '主键字段'; COMMENT ON COLUMN "BLADE_META_OBJECT_TYPE"."REF_CODE" IS '三方引用得代码字段'; COMMENT ON COLUMN "BLADE_META_OBJECT_TYPE"."REF_NAME" IS '三方引用得名称字段'; COMMENT ON COLUMN "BLADE_META_OBJECT_TYPE"."RULE_DICT_CODE" IS '业务规则类型字典'; COMMENT ON COLUMN "BLADE_META_OBJECT_TYPE"."RULE_FIELD" IS '业务规则类型'; COMMENT ON COLUMN "BLADE_META_OBJECT_TYPE"."SUBSYS_ID" IS '子系统编码'; COMMENT ON COLUMN "BLADE_META_OBJECT_TYPE"."TABLE_NAME" IS '所在得物理表'; DROP TABLE IF EXISTS "blade_log_api"; CREATE TABLE "blade_log_api" ( "id" BIGINT NOT NULL, "tenant_id" VARCHAR(12) DEFAULT '000000', "service_id" VARCHAR(32), "server_host" VARCHAR(255), "server_ip" VARCHAR(255), "env" VARCHAR(255), "type" VARCHAR(1) DEFAULT '1', "title" VARCHAR(255) DEFAULT '', "method" VARCHAR(10), "request_uri" VARCHAR(255), "user_agent" VARCHAR(1000), "remote_ip" VARCHAR(255), "method_class" VARCHAR(255), "method_name" VARCHAR(255), "params" TEXT, "time" VARCHAR(64), "create_by" VARCHAR(64), "create_time" TIMESTAMP(0) DEFAULT CURRENT_TIMESTAMP(), NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_log_api" IS '接口日志表'; COMMENT ON COLUMN "blade_log_api"."create_by" IS '创建者'; COMMENT ON COLUMN "blade_log_api"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_log_api"."env" IS '服务器环境'; COMMENT ON COLUMN "blade_log_api"."id" IS '编号'; COMMENT ON COLUMN "blade_log_api"."method" IS '操作方式'; COMMENT ON COLUMN "blade_log_api"."method_class" IS '方法类'; COMMENT ON COLUMN "blade_log_api"."method_name" IS '方法名'; COMMENT ON COLUMN "blade_log_api"."params" IS '操作提交的数据'; COMMENT ON COLUMN "blade_log_api"."remote_ip" IS '操作IP地址'; COMMENT ON COLUMN "blade_log_api"."request_uri" IS '请求URI'; COMMENT ON COLUMN "blade_log_api"."server_host" IS '服务器名'; COMMENT ON COLUMN "blade_log_api"."server_ip" IS '服务器IP地址'; COMMENT ON COLUMN "blade_log_api"."service_id" IS '服务ID'; COMMENT ON COLUMN "blade_log_api"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "blade_log_api"."time" IS '执行时间'; COMMENT ON COLUMN "blade_log_api"."title" IS '日志标题'; COMMENT ON COLUMN "blade_log_api"."type" IS '日志类型'; COMMENT ON COLUMN "blade_log_api"."user_agent" IS '用户代理'; DROP TABLE IF EXISTS "blade_meta_object_type_field"; CREATE TABLE "blade_meta_object_type_field" ( "id" BIGINT NOT NULL, "object_id" VARCHAR(36), "f_code" VARCHAR(255) NOT NULL, "f_name" VARCHAR(255) NOT NULL, "field" VARCHAR(255), "element_type" VARCHAR(255), "enum_type" VARCHAR(255), "seq" INT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON COLUMN "blade_meta_object_type_field"."element_type" IS '元素类型'; COMMENT ON COLUMN "blade_meta_object_type_field"."enum_type" IS '元素下拉列表时候对应的枚举类型Key'; COMMENT ON COLUMN "blade_meta_object_type_field"."f_code" IS '字段编码'; COMMENT ON COLUMN "blade_meta_object_type_field"."f_name" IS '字段标题'; COMMENT ON COLUMN "blade_meta_object_type_field"."field" IS '数据库实体属性'; COMMENT ON COLUMN "blade_meta_object_type_field"."object_id" IS '所属业务对象'; COMMENT ON COLUMN "blade_meta_object_type_field"."seq" IS '字段顺序'; DROP TABLE IF EXISTS "blade_meta_ref_object_type"; CREATE TABLE "blade_meta_ref_object_type" ( "object_type_id" VARCHAR(36) NOT NULL, "ref_object_type_id" VARCHAR(36) NOT NULL, "field_name" VARCHAR(30) NOT NULL, "id" BIGINT NOT NULL, NOT CLUSTER PRIMARY KEY ("object_type_id", "ref_object_type_id", "field_name", "id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_meta_ref_object_type" IS '业务对象引用关系表 记录业务对象之间的引用关系,比如采购订单引用了基础资料物料等'; COMMENT ON COLUMN "blade_meta_ref_object_type"."field_name" IS '所在得数据列'; COMMENT ON COLUMN "blade_meta_ref_object_type"."object_type_id" IS '业务对象内码'; COMMENT ON COLUMN "blade_meta_ref_object_type"."ref_object_type_id" IS '被引用得业务对象内码'; CREATE UNIQUE INDEX "INDEX26622359123600" ON "blade_meta_ref_object_type" ("object_type_id" ASC, "ref_object_type_id" ASC, "field_name" ASC, "id" ASC) STORAGE(ON "MAIN", CLUSTERBTR); DROP TABLE IF EXISTS "blade_param_biz"; CREATE TABLE "blade_param_biz" ( "id" BIGINT NOT NULL, "tenant_id" VARCHAR(12) DEFAULT '000000', "user_id" BIGINT, "param_name" VARCHAR(255), "param_key" VARCHAR(255), "param_value" TEXT, "remark" VARCHAR(255), "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), "status" INT, "is_deleted" INT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_param_biz" IS '参数表'; COMMENT ON COLUMN "blade_param_biz"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_param_biz"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_param_biz"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_param_biz"."id" IS '主键'; COMMENT ON COLUMN "blade_param_biz"."param_key" IS '参数键'; COMMENT ON COLUMN "blade_param_biz"."param_name" IS '参数名'; COMMENT ON COLUMN "blade_param_biz"."param_value" IS '参数值'; COMMENT ON COLUMN "blade_param_biz"."remark" IS '备注'; COMMENT ON COLUMN "blade_param_biz"."status" IS '状态'; COMMENT ON COLUMN "blade_param_biz"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "blade_param_biz"."update_time" IS '修改时间'; COMMENT ON COLUMN "blade_param_biz"."update_user" IS '修改人'; COMMENT ON COLUMN "blade_param_biz"."user_id" IS '用户'; DROP TABLE IF EXISTS "blade_param_nest"; CREATE TABLE "blade_param_nest" ( "id" BIGINT NOT NULL, "parent_id" BIGINT, "param_key" VARCHAR(255), "param_name" VARCHAR(255), "param_value" VARCHAR(255), "remark" VARCHAR(255), "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), "status" INT, "is_deleted" INT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_param_nest" IS '嵌套参数表'; COMMENT ON COLUMN "blade_param_nest"."create_dept" IS '创建单位'; COMMENT ON COLUMN "blade_param_nest"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_param_nest"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_param_nest"."id" IS '主键'; COMMENT ON COLUMN "blade_param_nest"."param_key" IS '参数键'; COMMENT ON COLUMN "blade_param_nest"."param_name" IS '参数名'; COMMENT ON COLUMN "blade_param_nest"."param_value" IS '参数值'; COMMENT ON COLUMN "blade_param_nest"."parent_id" IS '父级'; COMMENT ON COLUMN "blade_param_nest"."remark" IS '备注'; COMMENT ON COLUMN "blade_param_nest"."status" IS '状态'; COMMENT ON COLUMN "blade_param_nest"."update_time" IS '修改时间'; COMMENT ON COLUMN "blade_param_nest"."update_user" IS '修改人'; DROP TABLE IF EXISTS "blade_post"; CREATE TABLE "blade_post" ( "id" BIGINT NOT NULL, "tenant_id" VARCHAR(12) DEFAULT '000000', "category" INT, "post_code" VARCHAR(64), "post_name" VARCHAR(64), "sort" INT, "remark" VARCHAR(255), "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), "status" INT, "is_deleted" INT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_post" IS '岗位表'; COMMENT ON COLUMN "blade_post"."category" IS '岗位类型'; COMMENT ON COLUMN "blade_post"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_post"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_post"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_post"."id" IS '主键'; COMMENT ON COLUMN "blade_post"."post_code" IS '岗位编号'; COMMENT ON COLUMN "blade_post"."post_name" IS '岗位名称'; COMMENT ON COLUMN "blade_post"."remark" IS '岗位描述'; COMMENT ON COLUMN "blade_post"."sort" IS '岗位排序'; COMMENT ON COLUMN "blade_post"."status" IS '状态'; COMMENT ON COLUMN "blade_post"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "blade_post"."update_time" IS '修改时间'; COMMENT ON COLUMN "blade_post"."update_user" IS '修改人'; DROP TABLE IF EXISTS "blade_process_leave"; CREATE TABLE "blade_process_leave" ( "id" BIGINT NOT NULL, "process_definition_id" VARCHAR(64), "process_instance_id" VARCHAR(64), "start_time" TIMESTAMP(0), "end_time" TIMESTAMP(0), "reason" VARCHAR(255), "task_user" VARCHAR(255), "apply_time" TIMESTAMP(0), "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), "status" INT, "is_deleted" INT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_process_leave" IS '流程请假业务表'; COMMENT ON COLUMN "blade_process_leave"."apply_time" IS '申请时间'; COMMENT ON COLUMN "blade_process_leave"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_process_leave"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_process_leave"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_process_leave"."end_time" IS '结束时间'; COMMENT ON COLUMN "blade_process_leave"."id" IS '编号'; COMMENT ON COLUMN "blade_process_leave"."process_definition_id" IS '流程定义主键'; COMMENT ON COLUMN "blade_process_leave"."process_instance_id" IS '流程实例主键'; COMMENT ON COLUMN "blade_process_leave"."reason" IS '请假理由'; COMMENT ON COLUMN "blade_process_leave"."start_time" IS '开始时间'; COMMENT ON COLUMN "blade_process_leave"."status" IS '状态'; COMMENT ON COLUMN "blade_process_leave"."task_user" IS '第一级审批人'; COMMENT ON COLUMN "blade_process_leave"."update_time" IS '修改时间'; COMMENT ON COLUMN "blade_process_leave"."update_user" IS '修改人'; DROP TABLE IF EXISTS "blade_role"; CREATE TABLE "blade_role" ( "id" BIGINT NOT NULL, "tenant_id" VARCHAR(12) DEFAULT '000000', "parent_id" BIGINT DEFAULT 0, "role_name" VARCHAR(255), "sort" INT, "role_alias" VARCHAR(255), "is_deleted" INT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_role" IS '角色表'; COMMENT ON COLUMN "blade_role"."id" IS '主键'; COMMENT ON COLUMN "blade_role"."parent_id" IS '父主键'; COMMENT ON COLUMN "blade_role"."role_alias" IS '角色别名'; COMMENT ON COLUMN "blade_role"."role_name" IS '角色名'; COMMENT ON COLUMN "blade_role"."sort" IS '排序'; COMMENT ON COLUMN "blade_role"."tenant_id" IS '租户ID'; DROP TABLE IF EXISTS "blade_role_card"; CREATE TABLE "blade_role_card" ( "id" BIGINT NOT NULL, "card_id" BIGINT NOT NULL, "role_id" BIGINT NOT NULL, "edition" INT DEFAULT 1, "app_code" VARCHAR(128), NOT CLUSTER PRIMARY KEY ("id"), CHECK ("edition" >= 0) ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_role_card" IS '角色卡片'; COMMENT ON COLUMN "blade_role_card"."edition" IS '版本:PC 1/ 移动 2/ HMI 4'; DROP TABLE IF EXISTS "blade_role_menu"; CREATE TABLE "blade_role_menu" ( "id" BIGINT NOT NULL, "menu_id" BIGINT, "role_id" BIGINT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_role_menu" IS '角色菜单关联表'; COMMENT ON COLUMN "blade_role_menu"."id" IS '主键'; COMMENT ON COLUMN "blade_role_menu"."menu_id" IS '菜单id'; COMMENT ON COLUMN "blade_role_menu"."role_id" IS '角色id'; DROP TABLE IF EXISTS "blade_role_scope"; CREATE TABLE "blade_role_scope" ( "id" BIGINT NOT NULL, "scope_category" INT, "scope_id" BIGINT, "role_id" BIGINT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_role_scope" IS '角色数据权限关联表'; COMMENT ON COLUMN "blade_role_scope"."id" IS '主键'; COMMENT ON COLUMN "blade_role_scope"."role_id" IS '角色id'; COMMENT ON COLUMN "blade_role_scope"."scope_category" IS '权限类型(1:数据权限、2:接口权限)'; COMMENT ON COLUMN "blade_role_scope"."scope_id" IS '权限id'; DROP TABLE IF EXISTS "blade_scope_api"; CREATE TABLE "blade_scope_api" ( "id" BIGINT NOT NULL, "menu_id" BIGINT, "resource_code" VARCHAR(255), "scope_name" VARCHAR(255), "scope_path" VARCHAR(255), "scope_type" INT, "remark" VARCHAR(255), "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), "status" INT, "is_deleted" INT, "http_method" VARCHAR(50), NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_scope_api" IS '接口权限表'; COMMENT ON COLUMN "blade_scope_api"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_scope_api"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_scope_api"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_scope_api"."id" IS '主键'; COMMENT ON COLUMN "blade_scope_api"."menu_id" IS '菜单主键'; COMMENT ON COLUMN "blade_scope_api"."remark" IS '接口权限备注'; COMMENT ON COLUMN "blade_scope_api"."resource_code" IS '资源编号'; COMMENT ON COLUMN "blade_scope_api"."scope_name" IS '接口权限名'; COMMENT ON COLUMN "blade_scope_api"."scope_path" IS '接口权限地址'; COMMENT ON COLUMN "blade_scope_api"."scope_type" IS '接口权限类型'; COMMENT ON COLUMN "blade_scope_api"."status" IS '状态'; COMMENT ON COLUMN "blade_scope_api"."update_time" IS '修改时间'; COMMENT ON COLUMN "blade_scope_api"."update_user" IS '修改人'; COMMENT ON COLUMN "blade_scope_api"."http_method" IS '接口方法类型'; DROP TABLE IF EXISTS "blade_scope_data"; CREATE TABLE "blade_scope_data" ( "id" BIGINT NOT NULL, "menu_id" BIGINT, "resource_code" VARCHAR(255), "scope_name" VARCHAR(255), "scope_field" VARCHAR(255), "scope_class" VARCHAR(500), "scope_column" VARCHAR(255), "scope_type" INT, "scope_value" VARCHAR(2000), "remark" VARCHAR(255), "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), "status" INT, "is_deleted" INT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_scope_data" IS '数据权限表'; COMMENT ON COLUMN "blade_scope_data"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_scope_data"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_scope_data"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_scope_data"."id" IS '主键'; COMMENT ON COLUMN "blade_scope_data"."menu_id" IS '菜单主键'; COMMENT ON COLUMN "blade_scope_data"."remark" IS '数据权限备注'; COMMENT ON COLUMN "blade_scope_data"."resource_code" IS '资源编号'; COMMENT ON COLUMN "blade_scope_data"."scope_class" IS '数据权限类名'; COMMENT ON COLUMN "blade_scope_data"."scope_column" IS '数据权限字段'; COMMENT ON COLUMN "blade_scope_data"."scope_field" IS '数据权限字段'; COMMENT ON COLUMN "blade_scope_data"."scope_name" IS '数据权限名称'; COMMENT ON COLUMN "blade_scope_data"."scope_type" IS '数据权限类型'; COMMENT ON COLUMN "blade_scope_data"."scope_value" IS '数据权限值域'; COMMENT ON COLUMN "blade_scope_data"."status" IS '状态'; COMMENT ON COLUMN "blade_scope_data"."update_time" IS '修改时间'; COMMENT ON COLUMN "blade_scope_data"."update_user" IS '修改人'; DROP TABLE IF EXISTS "blade_top_menu"; CREATE TABLE "blade_top_menu" ( "id" BIGINT NOT NULL, "tenant_id" VARCHAR(12), "code" VARCHAR(255), "name" VARCHAR(255), "source" VARCHAR(255), "sort" INT, "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), "status" INT, "is_deleted" INT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_top_menu" IS '顶部菜单表'; COMMENT ON COLUMN "blade_top_menu"."code" IS '顶部菜单编号'; COMMENT ON COLUMN "blade_top_menu"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_top_menu"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_top_menu"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_top_menu"."id" IS '主键'; COMMENT ON COLUMN "blade_top_menu"."is_deleted" IS '是否已删除'; COMMENT ON COLUMN "blade_top_menu"."name" IS '顶部菜单名'; COMMENT ON COLUMN "blade_top_menu"."sort" IS '顶部菜单排序'; COMMENT ON COLUMN "blade_top_menu"."source" IS '顶部菜单资源'; COMMENT ON COLUMN "blade_top_menu"."status" IS '状态'; COMMENT ON COLUMN "blade_top_menu"."tenant_id" IS '租户id'; COMMENT ON COLUMN "blade_top_menu"."update_time" IS '修改时间'; COMMENT ON COLUMN "blade_top_menu"."update_user" IS '修改人'; DROP TABLE IF EXISTS "blade_top_menu_setting"; CREATE TABLE "blade_top_menu_setting" ( "id" BIGINT NOT NULL, "top_menu_id" BIGINT, "menu_id" BIGINT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_top_menu_setting" IS '顶部菜单配置表'; COMMENT ON COLUMN "blade_top_menu_setting"."id" IS '主键'; COMMENT ON COLUMN "blade_top_menu_setting"."menu_id" IS '菜单主键'; COMMENT ON COLUMN "blade_top_menu_setting"."top_menu_id" IS '顶部菜单主键'; DROP TABLE IF EXISTS "blade_user_dept"; CREATE TABLE "blade_user_dept" ( "id" BIGINT NOT NULL, "user_id" BIGINT DEFAULT 0, "dept_id" BIGINT DEFAULT 0, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_user_dept" IS '用户部门表'; COMMENT ON COLUMN "blade_user_dept"."dept_id" IS '部门ID'; COMMENT ON COLUMN "blade_user_dept"."id" IS '主键'; COMMENT ON COLUMN "blade_user_dept"."user_id" IS '用户ID'; DROP TABLE IF EXISTS "blade_user_oauth"; CREATE TABLE "blade_user_oauth" ( "id" BIGINT NOT NULL, "tenant_id" VARCHAR(12), "uuid" VARCHAR(64), "user_id" BIGINT, "username" VARCHAR(32), "nickname" VARCHAR(64), "avatar" VARCHAR(1000), "blog" VARCHAR(50), "company" VARCHAR(255), "location" VARCHAR(255), "email" VARCHAR(255), "remark" VARCHAR(255), "gender" VARCHAR(16), "source" VARCHAR(32), NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_user_oauth" IS '用户第三方认证表'; COMMENT ON COLUMN "blade_user_oauth"."avatar" IS '头像'; COMMENT ON COLUMN "blade_user_oauth"."blog" IS '应用主页'; COMMENT ON COLUMN "blade_user_oauth"."company" IS '公司名'; COMMENT ON COLUMN "blade_user_oauth"."email" IS '邮件'; COMMENT ON COLUMN "blade_user_oauth"."gender" IS '性别'; COMMENT ON COLUMN "blade_user_oauth"."id" IS '主键'; COMMENT ON COLUMN "blade_user_oauth"."location" IS '地址'; COMMENT ON COLUMN "blade_user_oauth"."nickname" IS '用户名'; COMMENT ON COLUMN "blade_user_oauth"."remark" IS '备注'; COMMENT ON COLUMN "blade_user_oauth"."source" IS '来源'; COMMENT ON COLUMN "blade_user_oauth"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "blade_user_oauth"."user_id" IS '用户ID'; COMMENT ON COLUMN "blade_user_oauth"."username" IS '账号'; COMMENT ON COLUMN "blade_user_oauth"."uuid" IS '第三方系统用户ID'; DROP TABLE IF EXISTS "blade_user_other"; CREATE TABLE "blade_user_other" ( "id" BIGINT NOT NULL, "user_id" BIGINT DEFAULT 0, "user_ext" VARCHAR(255), NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_user_other" IS '用户平台拓展表'; COMMENT ON COLUMN "blade_user_other"."id" IS '主键'; COMMENT ON COLUMN "blade_user_other"."user_ext" IS '用户拓展信息'; COMMENT ON COLUMN "blade_user_other"."user_id" IS '用户ID'; DROP TABLE IF EXISTS "blade_user_web"; CREATE TABLE "blade_user_web" ( "id" BIGINT NOT NULL, "user_id" BIGINT DEFAULT 0, "user_ext" VARCHAR(255), NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_user_web" IS '用户平台拓展表'; COMMENT ON COLUMN "blade_user_web"."id" IS '主键'; COMMENT ON COLUMN "blade_user_web"."user_ext" IS '用户拓展信息'; COMMENT ON COLUMN "blade_user_web"."user_id" IS '用户ID'; DROP TABLE IF EXISTS "blade_global_wcs_of_rps"; CREATE TABLE "blade_global_wcs_of_rps" ( "code" VARCHAR(3) NOT NULL, "precondition" INT, "rps" TINYINT NOT NULL, "remark" VARCHAR(256), "is_plan" INT ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_global_wcs_of_rps" IS '全局工况绩效'; COMMENT ON COLUMN "blade_global_wcs_of_rps"."code" IS '状态码'; COMMENT ON COLUMN "blade_global_wcs_of_rps"."precondition" IS '前置条件'; COMMENT ON COLUMN "blade_global_wcs_of_rps"."is_plan" IS '计划内外:0 计划内 1 计划外'; DROP TABLE IF EXISTS "blade_notify_config"; CREATE TABLE "blade_notify_config" ( "id" VARCHAR(64) NOT NULL, "name" VARCHAR(255), "type" VARCHAR(255), "provider" VARCHAR(255), "configuration" TEXT, "description" VARCHAR(255), "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), "status" INT, "is_deleted" INT, "tenant_id" VARCHAR(12) DEFAULT '000000', NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON COLUMN "blade_notify_config"."configuration" IS '配置详细内容'; COMMENT ON COLUMN "blade_notify_config"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_notify_config"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_notify_config"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_notify_config"."description" IS '配置描述'; COMMENT ON COLUMN "blade_notify_config"."name" IS '配置名称'; COMMENT ON COLUMN "blade_notify_config"."provider" IS '服务提供商'; COMMENT ON COLUMN "blade_notify_config"."status" IS '状态'; COMMENT ON COLUMN "blade_notify_config"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "blade_notify_config"."type" IS '通知类型'; COMMENT ON COLUMN "blade_notify_config"."update_time" IS '修改时间'; COMMENT ON COLUMN "blade_notify_config"."update_user" IS '修改人'; CREATE UNIQUE INDEX "INDEX189456641234" ON "BLADE_NOTIFY_CONFIG" ("type" ASC, "is_deleted" ASC) STORAGE(ON "MAIN", CLUSTERBTR); DROP TABLE IF EXISTS "blade_notify_template"; CREATE TABLE "blade_notify_template" ( "id" VARCHAR(64) NOT NULL, "name" VARCHAR(255), "provider" VARCHAR(255), "type" VARCHAR(255), "business" VARCHAR(255), "template" CLOB, "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), "status" INT, "is_deleted" INT, "tenant_id" VARCHAR(12) DEFAULT '000000', NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON COLUMN "blade_notify_template"."business" IS '业务key'; COMMENT ON COLUMN "blade_notify_template"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_notify_template"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_notify_template"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_notify_template"."name" IS '模板名称'; COMMENT ON COLUMN "blade_notify_template"."provider" IS '通知服务商'; COMMENT ON COLUMN "blade_notify_template"."status" IS '状态'; COMMENT ON COLUMN "blade_notify_template"."template" IS '模板内容'; COMMENT ON COLUMN "blade_notify_template"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "blade_notify_template"."type" IS '通知类型'; COMMENT ON COLUMN "blade_notify_template"."update_time" IS '修改时间'; COMMENT ON COLUMN "blade_notify_template"."update_user" IS '修改人'; DROP TABLE IF EXISTS "blade_datasource"; CREATE TABLE "blade_datasource" ( "id" BIGINT NOT NULL, "name" VARCHAR(100), "driver_class" VARCHAR(100), "url" VARCHAR(500), "username" VARCHAR(50), "password" VARCHAR(50), "remark" VARCHAR(255), "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), "status" INT, "is_deleted" INT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_datasource" IS '数据源配置表'; COMMENT ON COLUMN "blade_datasource"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_datasource"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_datasource"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_datasource"."driver_class" IS '驱动类'; COMMENT ON COLUMN "blade_datasource"."id" IS '主键'; COMMENT ON COLUMN "blade_datasource"."name" IS '名称'; COMMENT ON COLUMN "blade_datasource"."password" IS '密码'; COMMENT ON COLUMN "blade_datasource"."remark" IS '备注'; COMMENT ON COLUMN "blade_datasource"."status" IS '状态'; COMMENT ON COLUMN "blade_datasource"."update_time" IS '修改时间'; COMMENT ON COLUMN "blade_datasource"."update_user" IS '修改人'; COMMENT ON COLUMN "blade_datasource"."url" IS '连接地址'; COMMENT ON COLUMN "blade_datasource"."username" IS '用户名'; DROP TABLE IF EXISTS "blade_resource_definition"; CREATE TABLE "blade_resource_definition" ( "code" VARCHAR(255) NOT NULL, "name" VARCHAR(255), "module_code" VARCHAR(255), "controller_code" VARCHAR(255), "class_name" VARCHAR(255), "method_name" VARCHAR(255), "url" VARCHAR(255), "http_method" VARCHAR(255), "button_flag" TINYINT, "create_time" TIMESTAMP(0), NOT CLUSTER PRIMARY KEY ("code") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON COLUMN "blade_resource_definition"."button_flag" IS '是否是菜单按钮'; COMMENT ON COLUMN "blade_resource_definition"."class_name" IS '控制器类名称'; COMMENT ON COLUMN "blade_resource_definition"."code" IS '资源的标识'; COMMENT ON COLUMN "blade_resource_definition"."controller_code" IS '资源所属模块'; COMMENT ON COLUMN "blade_resource_definition"."create_time" IS '资源添加日期'; COMMENT ON COLUMN "blade_resource_definition"."http_method" IS 'http请求方法'; COMMENT ON COLUMN "blade_resource_definition"."method_name" IS '控制器中的方法名称'; COMMENT ON COLUMN "blade_resource_definition"."module_code" IS '应用的标识'; COMMENT ON COLUMN "blade_resource_definition"."name" IS '资源名称'; COMMENT ON COLUMN "blade_resource_definition"."url" IS '资源的请求路径'; DROP TABLE IF EXISTS "blade_enterprise_information"; CREATE TABLE "blade_enterprise_information" ( "id" BIGINT NOT NULL, "remark" VARCHAR(255), "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), "status" INT, "is_deleted" INT, "tenant_id" VARCHAR(10) DEFAULT '000000', "file_name" VARCHAR(100), "content_length" BIGINT, "object_key" VARCHAR(100), "suffix" VARCHAR(50), "link" VARCHAR(500), "type" INT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_enterprise_information" IS '企业logo表'; COMMENT ON COLUMN "blade_enterprise_information"."content_length" IS '文件大小'; COMMENT ON COLUMN "blade_enterprise_information"."file_name" IS '图片名称'; COMMENT ON COLUMN "blade_enterprise_information"."link" IS '文件链接'; COMMENT ON COLUMN "blade_enterprise_information"."object_key" IS '文件的objectKey'; COMMENT ON COLUMN "blade_enterprise_information"."remark" IS '备注'; COMMENT ON COLUMN "blade_enterprise_information"."suffix" IS '文件后缀'; COMMENT ON COLUMN "blade_enterprise_information"."type" IS '图片类型:0 log01 1 log02'; DROP TABLE IF EXISTS "blade_visual_global_api"; CREATE TABLE "blade_visual_global_api" ( "id" BIGINT NOT NULL, "url_name" VARCHAR(255), "url" VARCHAR(255), "config_id" BIGINT, "data_params" TEXT, "method" VARCHAR(20), "headers" TEXT, "visual_id" VARCHAR(255), "time" INT, "create_time" TIMESTAMP(0), "create_user" VARCHAR(50), "update_time" TIMESTAMP(0), "update_user" VARCHAR(50), "status" TINYINT, "is_deleted" BIGINT, "create_dept" BIGINT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON COLUMN "blade_visual_global_api"."config_id" IS '接口id'; COMMENT ON COLUMN "blade_visual_global_api"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_visual_global_api"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_visual_global_api"."data_params" IS '接口参数'; COMMENT ON COLUMN "blade_visual_global_api"."headers" IS 'http头'; COMMENT ON COLUMN "blade_visual_global_api"."is_deleted" IS '是否删除'; COMMENT ON COLUMN "blade_visual_global_api"."method" IS '接口方法'; COMMENT ON COLUMN "blade_visual_global_api"."status" IS '业务状态'; COMMENT ON COLUMN "blade_visual_global_api"."time" IS '刷新时间'; COMMENT ON COLUMN "blade_visual_global_api"."update_time" IS '更新时间'; COMMENT ON COLUMN "blade_visual_global_api"."update_user" IS '更新人'; COMMENT ON COLUMN "blade_visual_global_api"."url" IS '接口地址'; COMMENT ON COLUMN "blade_visual_global_api"."url_name" IS '接口名称'; COMMENT ON COLUMN "blade_visual_global_api"."visual_id" IS '可视化大屏的ID'; DROP TABLE IF EXISTS "blade_visual_comp"; CREATE TABLE "blade_visual_comp" ( "id" BIGINT NOT NULL, "name" VARCHAR(50), "component" TEXT, "type" VARCHAR(50), "url" VARCHAR(255), "order_num" INT DEFAULT 0, "status" TINYINT DEFAULT 1, "is_deleted" DECIMAL(20, 0), "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), NOT CLUSTER PRIMARY KEY ("id"), CHECK ("is_deleted" >= 0) ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_visual_comp" IS '组件表'; COMMENT ON COLUMN "blade_visual_comp"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_visual_comp"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_visual_comp"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_visual_comp"."is_deleted" IS '删除标记:0-未删除,1-已删除'; COMMENT ON COLUMN "blade_visual_comp"."name" IS '组件中文名称'; COMMENT ON COLUMN "blade_visual_comp"."order_num" IS '排列顺序'; COMMENT ON COLUMN "blade_visual_comp"."component" IS '组件详情'; COMMENT ON COLUMN "blade_visual_comp"."status" IS '业务状态 1启用 0 停用'; COMMENT ON COLUMN "blade_visual_comp"."type" IS '组件类型'; COMMENT ON COLUMN "blade_visual_comp"."update_time" IS '更新时间'; COMMENT ON COLUMN "blade_visual_comp"."update_user" IS '更新人'; COMMENT ON COLUMN "blade_visual_comp"."url" IS '缩略图地址'; DROP TABLE IF EXISTS "blade_visual_comp_type"; CREATE TABLE "blade_visual_comp_type" ( "id" BIGINT NOT NULL, "name" VARCHAR(50), "type" VARCHAR(50), "parent_id" BIGINT, "icon" VARCHAR(50), "status" TINYINT DEFAULT 1, "order_num" INT DEFAULT 0, "is_deleted" DECIMAL(20, 0), "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), NOT CLUSTER PRIMARY KEY ("id"), CHECK ("is_deleted" >= 0) ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_visual_comp_type" IS '组件类别表'; COMMENT ON COLUMN "blade_visual_comp_type"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_visual_comp_type"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_visual_comp_type"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_visual_comp_type"."icon" IS '图表名称'; COMMENT ON COLUMN "blade_visual_comp_type"."is_deleted" IS '删除标记:0-未删除,1-已删除'; COMMENT ON COLUMN "blade_visual_comp_type"."name" IS '菜单名称'; COMMENT ON COLUMN "blade_visual_comp_type"."order_num" IS '排序'; COMMENT ON COLUMN "blade_visual_comp_type"."parent_id" IS '父菜单id'; COMMENT ON COLUMN "blade_visual_comp_type"."status" IS '业务状态 1启用 0 停用'; COMMENT ON COLUMN "blade_visual_comp_type"."type" IS '菜单类型'; COMMENT ON COLUMN "blade_visual_comp_type"."update_time" IS '更新时间'; COMMENT ON COLUMN "blade_visual_comp_type"."update_user" IS '更新人'; -- 创建通知公告表 DROP TABLE IF EXISTS "blade_notify_system"; CREATE TABLE "blade_notify_system" ( "id" VARCHAR(64) NOT NULL, "source_id" BIGINT, "notify_user" BIGINT NOT NULL, "notify_type" INT DEFAULT 1 NOT NULL, "business_name" VARCHAR(64), "business_key" VARCHAR(32), "message" TEXT, "notify_time" TIMESTAMP(0), "attachments" TEXT, "description" VARCHAR(1024), "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), "status" INT DEFAULT 0, "is_deleted" INT, NOT CLUSTER PRIMARY KEY ("ID") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_notify_system" IS '通知公告表'; COMMENT ON COLUMN "blade_notify_system"."attachments" IS '通知消息附件'; COMMENT ON COLUMN "blade_notify_system"."business_key" IS '主题标识,如:device_alarm'; COMMENT ON COLUMN "blade_notify_system"."business_name" IS '主题名称'; COMMENT ON COLUMN "blade_notify_system"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_notify_system"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_notify_system"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_notify_system"."message" IS '通知消息内容'; COMMENT ON COLUMN "blade_notify_system"."notify_time" IS '通知时间'; COMMENT ON COLUMN "blade_notify_system"."notify_type" IS '通知类型 1站内信 2公告'; COMMENT ON COLUMN "blade_notify_system"."notify_user" IS '通知用户ID'; COMMENT ON COLUMN "blade_notify_system"."source_id" IS '来源Id'; COMMENT ON COLUMN "blade_notify_system"."status" IS '状态'; COMMENT ON COLUMN "blade_notify_system"."update_time" IS '修改时间'; COMMENT ON COLUMN "blade_notify_system"."update_user" IS '修改人'; CREATE INDEX "notify_user" ON "blade_notify_system" ("notify_user" ASC) STORAGE(ON "MAIN", CLUSTERBTR); CREATE INDEX "source_index" ON "blade_notify_system" ("source_id" ASC) STORAGE(ON "MAIN", CLUSTERBTR); -- 记录各个业务编码规则生成历史 DROP TABLE IF EXISTS "blade_code_history"; CREATE TABLE "blade_code_history" ( "id" BIGINT NOT NULL, "object_id" VARCHAR(32) NOT NULL, "code" VARCHAR(255), "rule_id" BIGINT, "create_time" TIMESTAMP(0), NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON COLUMN "blade_code_history"."code" IS '业务生成编号'; COMMENT ON COLUMN "blade_code_history"."create_time" IS '生成时间'; COMMENT ON COLUMN "blade_code_history"."object_id" IS '业务对象编号'; COMMENT ON COLUMN "blade_code_history"."rule_id" IS '当前使用得规则id'; -- 初始化菜单脚本 -- 菜单表数据 INSERT INTO blade_menu(id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1123598815738675204, 1123598815738675307, 'account', '账号', 'account', '/console/system/user', 'iconfont iconicon_principal', 1, 1, 0, 1, NULL, 0, 'CPS', 1), (1123598815738675205, 1123598815738675307, 'authority_conf', '数据权限配置', 'authority_conf', '/console/system/data-scope-manager', 'iconfont iconicon_group', 5, 1, 0, 1, NULL, 0, 'CPS', 1), (1123598815738675206, 1504290968008056833, 'dictionary', '字典管理', 'dictionary', '/console/system/dict', 'iconfont iconicon_addresslist', 5, 1, 0, 1, NULL, 0, 'CPS', 1), (1123598815738675207, 1504290968008056833, 'menu', '菜单管理', 'menu', '/console/system/menu', 'iconfont iconicon_subordinate', 4, 1, 0, 1, NULL, 0, 'CPS', 1), (1123598815738675209, 1504290968008056833, 'parameter', '参数管理', 'parameter', '/console/system/param', 'iconfont iconicon_community_line', 6, 1, 0, 1, NULL, 0, 'CPS', 1), (1123598815738675213, 1504290968008056833, 'log', '日志', 'log', '/monitor/log', 'iconfont iconicon_doc', 15, 1, 0, 1, NULL, 0, 'CPS', 1), (1123598815738675214, 1123598815738675213, 'op_log', '通用日志', 'op_log', '/monitor/log/usual', 'iconfont iconicon_compile', 2, 1, 0, 1, NULL, 0, 'CPS', 1), (1123598815738675215, 1123598815738675213, 'biz_log', '业务日志', 'biz_log', '/monitor/log/api', 'iconfont iconicon_compile', 1, 1, 0, 1, NULL, 0, 'CPS', 1), (1123598815738675216, 1123598815738675213, 'error_log', '错误日志', 'error_log', '/monitor/log/error', 'iconfont iconicon_compile', 3, 1, 0, 1, NULL, 0, 'CPS', 1), (1123598815738675223, 1123598815738675204, 'user_add', '新增', 'add', '/console/system/user/add', 'plus', 1, 2, 1, 1, NULL, 0, 'CPS', 1), (1123598815738675224, 1123598815738675204, 'user_edit', '修改', 'edit', '/console/system/user/edit', 'form', 2, 2, 2, 1, NULL, 0, 'CPS', 1), (1123598815738675225, 1123598815738675204, 'user_delete', '删除', 'delete', '/api/blade-user/remove', 'delete', 3, 2, 3, 1, NULL, 0, 'CPS', 1), (1123598815738675226, 1123598815738675204, 'user_role', '角色配置', 'role', NULL, 'user-add', 4, 2, 1, 1, NULL, 0, 'CPS', 1), (1123598815738675227, 1123598815738675204, 'user_reset', '密码重置', 'reset-password', '/api/blade-user/reset-password', 'retweet', 5, 2, 1, 1, NULL, 0, 'CPS', 1), (1123598815738675228, 1123598815738675204, 'user_view', '查看', 'view', '/console/system/user/view', 'file-text', 6, 2, 2, 1, NULL, 0, 'CPS', 1), (1123598815738675229, 1123598815738675205, 'data_scope_manager_add', '新增', 'add', '/console/system/data-scope-manager/add', 'plus', 1, 2, 1, 1, NULL, 0, 'CPS', 1), (1123598815738675230, 1123598815738675205, 'data_scope_manager_edit', '修改', 'edit', '/console/system/data-scope-manager/edit', 'form', 2, 2, 2, 1, NULL, 0, 'CPS', 1), (1123598815738675231, 1123598815738675205, 'data_scope_manager_delete', '删除', 'delete', '/api/blade-system/data-scope-manager/remove', 'delete', 3, 2, 3, 1, NULL, 0, 'CPS', 1), (1123598815738675232, 1123598815738675205, 'data_scope_manager_view', '查看', 'view', '/console/system/data-scope-manager/view', 'file-text', 4, 2, 2, 1, NULL, 0, 'CPS', 1), (1123598815738675233, 1123598815738675206, 'dict_add', '新增', 'add', '/console/system/dict/add', 'plus', 1, 2, 1, 1, NULL, 0, 'CPS', 1), (1123598815738675234, 1123598815738675206, 'dict_edit', '修改', 'edit', '/console/system/dict/edit', 'form', 2, 2, 2, 1, NULL, 0, 'CPS', 1), (1123598815738675235, 1123598815738675206, 'dict_delete', '删除', 'delete', '/api/blade-system/dict/remove', 'delete', 3, 2, 3, 1, NULL, 0, 'CPS', 1), (1123598815738675236, 1123598815738675206, 'dict_view', '查看', 'view', '/console/system/dict/view', 'file-text', 4, 2, 2, 1, NULL, 0, 'CPS', 1), (1123598815738675237, 1123598815738675207, 'menu_add', '新增', 'add', '/console/system/menu/add', 'plus', 1, 2, 1, 1, NULL, 0, 'CPS', 1), (1123598815738675238, 1123598815738675207, 'menu_edit', '修改', 'edit', '/console/system/menu/edit', 'form', 2, 2, 2, 1, NULL, 0, 'CPS', 1), (1123598815738675239, 1123598815738675207, 'menu_delete', '删除', 'delete', '/api/blade-system/menu/remove', 'delete', 3, 2, 3, 1, NULL, 0, 'CPS', 1), (1123598815738675240, 1123598815738675207, 'menu_view', '查看', 'view', '/console/system/menu/view', 'file-text', 4, 2, 2, 1, NULL, 0, 'CPS', 1), (1123598815738675241, 1123598815738675308, 'role_add', '新增', 'add', '', 'plus', 1, 2, 1, 1, NULL, 0, 'CPS', 1), (1123598815738675242, 1123598815738675308, 'role_edit', '修改', 'edit', '', 'form', 2, 2, 2, 1, NULL, 0, 'CPS', 1), (1123598815738675243, 1123598815738675308, 'role_delete', '删除', 'delete', '/api/blade-system/role/remove', 'delete', 3, 2, 3, 1, NULL, 0, 'CPS', 1), (1123598815738675244, 1123598815738675308, 'role_view', '查看', 'view', '', 'file-text', 4, 2, 2, 1, NULL, 0, 'CPS', 1), (1123598815738675245, 1123598815738675209, 'param_add', '新增', 'add', '/console/system/param/add', 'plus', 1, 2, 1, 1, NULL, 0, 'CPS', 1), (1123598815738675246, 1123598815738675209, 'param_edit', '修改', 'edit', '/console/system/param/edit', 'form', 2, 2, 2, 1, NULL, 0, 'CPS', 1), (1123598815738675247, 1123598815738675209, 'param_delete', '删除', 'delete', '/api/blade-system/param/remove', 'delete', 3, 2, 3, 1, NULL, 0, 'CPS', 1), (1123598815738675248, 1123598815738675209, 'param_view', '查看', 'view', '/console/system/param/view', 'file-text', 4, 2, 2, 1, NULL, 0, 'CPS', 1), (1123598815738675249, 1123598815738675214, 'log_usual_view', '查看', 'view', '/monitor/log/usual/view', 'file-text', 4, 2, 2, 1, NULL, 0, 'CPS', 1), (1123598815738675250, 1123598815738675215, 'log_api_view', '查看', 'view', '/monitor/log/api/view', 'file-text', 4, 2, 2, 1, NULL, 0, 'CPS', 1), (1123598815738675251, 1123598815738675216, 'log_error_view', '查看', 'view', '/monitor/log/error/view', 'file-text', 4, 2, 2, 1, NULL, 0, 'CPS', 1), (1123598815738675307, 1504290968008056833, 'authority', '账号权限', 'authority', '/console/authority', 'iconfont icon-bofangqi-suoping', 2, 1, 0, 1, '', 0, 'CPS', 1), (1123598815738675308, 1123598815738675307, 'role', '角色', 'role', '/console/authority/role', 'iconfont iconicon_boss', 2, 1, 0, 1, NULL, 0, 'CPS', 1), (1123598815738675309, 1123598815738675307, 'authority_scope', '数据权限', 'authority_scope', '/console/authority/datascope', 'iconfont icon-shujuzhanshi2', 2, 1, 0, 1, '', 0, 'CPS', 1), (1123598815738675310, 1123598815738675309, 'data_scope_setting', '权限配置', 'setting', NULL, 'setting', 1, 2, 2, 1, NULL, 0, 'CPS', 1), (1123598815738675311, 1123598815738675307, 'api_scope', '接口权限', 'menu', '/console/authority/apiscope', 'iconfont icon-iconset0216', 3, 1, 0, 1, '', 0, 'CPS', 1), (1164733399669962201, 1504290968008056833, 'attach_files', '附件管理', 'attach_files', '/console/resource/attach', 'iconfont iconicon_ding', 10, 1, 0, 1, NULL, 0, 'CPS', 1), (1164733399669962202, 1164733399669962201, 'attach_upload', '上传', 'upload', '/console/resource/attach/upload', '', 1, 2, 1, 1, NULL, 0, 'CPS', 1), (1164733399669962203, 1164733399669962201, 'attach_download', '下载', 'download', '/console/resource/attach/download', '', 2, 2, 2, 1, NULL, 0, 'CPS', 1), (1164733399669962204, 1164733399669962201, 'attach_delete', '删除', 'delete', '/api/blade-resource/attach/remove', '', 3, 2, 3, 1, NULL, 0, 'CPS', 1), (1460887380398260225, 1123598815738675204, 'user_enable', '启停用', 'user_enable', '', 'iconfont iconicon_principal', 7, 2, 0, 1, '', 0, 'CPS', 1), (1464052121430261761, 1123598815738675308, 'menu_permissions', '权限设置', 'menu_permissions', '', 'iconfont iconicon_setting', 4, 2, 0, 1, '', 0, 'CPS', 1), (1465150590017654786, 1504333189432020994, 'coding_rule', '编码规则', 'coding_rule', '/console/base/code-rules', 'iconfont iconicon_compile', 1, 1, 0, 1, '', 0, 'CPS', 1), (1469106123422236674, 1465150590017654786, 'code_rules_add', '新增', 'code_rules_add', '', 'iconfont iconicon_add', 1, 2, 0, 1, '', 0, 'CPS', 1), (1469106388762296321, 1465150590017654786, 'code_rules_edit', '编辑', 'code_rules_edit', '', 'iconfont iconicon_compile', 2, 2, 0, 1, '', 0, 'CPS', 1), (1491332507161034753, 1504333189432020994, 'meta_type', '业务对象', 'meta_type', '/console/system/meta-object-type/index', 'iconfont iconicon_roundadd', 2, 1, 0, 1, '', 0, 'CPS', 1), (1491332743908524034, 1491332507161034753, 'meta_type_view', '查看', 'view', '/console/system/meta-type/view', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1491333049027362818, 1491332507161034753, 'meta_type_edit', '修改', 'edit', '/console/system/meta-type/edit', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1491333556290682882, 1491332507161034753, 'meta_type_remove', '删除', 'delete', '/console/system/meta-type/remove', 'iconfont iconicon_roundreduce', 1, 2, 0, 1, '', 0, 'CPS', 1), (1491334449140563970, 1491332507161034753, 'meta_type_add', '新增', 'add', '/console/system/meta-type/add', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1499654478469050369, 1504290968008056833, 'oss_system', '运维管理', 'oss_system', '/console/soam/oss-system', 'iconfont icon-wxbgongju', 17, 1, 0, 1, '', 0, 'CPS', 1), (1518832391462793217, 1504290968008056833, 'vision_setting', '可视化设置', 'vision_setting', '/console/vision-setting', 'iconfont iconicon_scan', 1, 1, 0, 1, '', 0, 'CPS', 1), (1503616665762193409, 1518832391462793217, 'kanban_api', '看板接口', 'kanban_api', '/console/system/interfaceConfig', 'iconfont iconicon_roundadd', 14, 1, 0, 1, '', 0, 'CPS', 1), (1518832588427309057, 1518832391462793217, 'vision_component_modify', '组件维护', 'vision_componen_modify', '/console/system/vision-component-modify', 'iconfont iconicon_scan', 1, 1, 0, 1, '', 0, 'CPS', 1), (1518832798666797058, 1518832391462793217, 'component_classification', '分类维护', 'component_classification', '/console/system/component-classification', 'iconfont iconicon_left', 2, 1, 0, 1, '', 0, 'CPS', 1), (1504290968008056833, 0, 'app_settings', '配置中心', 'app_settings', '/settings', 'iconfont saber-peizhizhongxin', 30, 0, 0, 1, '', 0, 'CPS', 1), (1504297396495781890, 1504290968008056833, 'language', '多语言', 'language', '/console/system/i18nData', 'iconfont iconicon_sms', 3, 1, 0, 1, '', 0, 'CPS', 1), (1504333189432020994, 1504290968008056833, 'rule_management', '编码规则管理', 'rule_management', '/settings', 'iconfont iconicon_setting', 7, 1, 0, 1, '', 0, 'CPS', 1), (1519970491499069442, 1123598815738675201, 'Access', '信息卡', 'card', '', 'iconfont iconicon_send', 1, 3, 0, 1, '', 0, 'CPS', 1), (1519971258746322945, 1123598815738675201, 'deskNotice', '公告', 'card', '', 'iconfont iconicon_send', 2, 3, 0, 1, '', 0, 'CPS', 1), (1519972116229832706, 1123598815738675201, 'Entrance', '快捷入口', 'card', '', 'iconfont iconicon_send', 3, 3, 0, 1, '', 0, 'CPS', 1), (1519972350729175041, 1123598815738675201, 'Guide', '使用引导', 'card', '', 'iconfont iconicon_send', 4, 3, 0, 1, '', 0, 'CPS', 1), (1519972501539569666, 1123598815738675201, 'Weather', '日历', 'card', '', 'iconfont iconicon_send', 5, 3, 0, 1, '', 0, 'CPS', 1), (1518929460899213313, 1483632111746801666, 'tooling', '工装', 'tooling', '/console/tooling', 'iconfont iconicon_send', 5, 1, 0, 1, '', 0, 'CPS', 1), (1123598815738670000, 1504290968008056833, 'notification', '消息通知', 'dictionary', '/notification', 'iconfont', 8, 1, 0, 1, NULL, 0, 'CPS', 1), (1123598815738670001, 1123598815738670000, 'notice_configuration', '服务配置', 'notice_configuration', '/notification/configuration', 'iconfont', 3, 1, 0, 1, NULL, 0, 'CPS', 1), (1123598815738670003, 1123598815738670000, 'notice_business', '业务通知', 'notice_business', '/notification/business', 'iconfont', 2, 1, 0, 1, NULL, 0, 'CPS', 1), (1526813105241657346, 1123598815738670000, 'noticed', '公告', 'noticed', '/notification/notice/index', 'iconfont iconicon_coinpurse_line', 1, 1, 0, 1, '', 0, 'CPS', 1), (1529637504500043777, 1123598815738670000, 'notifyRecord', '通知记录', 'notifyRecord', '/notification/notifyRecord', 'iconfont iconicon_task_done', 78, 1, 0, 2, '', 0, 'CPS', 1), (1529304933281509378, 1504297396495781890, 'language_edit', '修改', 'language_edit', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529305042987724802, 1504297396495781890, 'language_delete', '删除', 'language_delete', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529305101015920642, 1504297396495781890, 'language_import', '导入', 'language_import', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529305169731203073, 1504297396495781890, 'language_export', '导出', 'language_export', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529305723731652609, 1465150590017654786, 'code_rules_delete', '删除', 'code_rules_delete', '', '', 23, 2, 0, 1, '', 0, 'CPS', 1), (1529305801384996865, 1465150590017654786, 'code_rules_catalog_enable', '开启规则分类', 'code_rules_catalog_enable', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529305965168373761, 1491332507161034753, 'meta_type_save', '保存', 'meta_type_save', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529306107384639489, 1499654478469050369, 'oss_update', '更新', 'oss_update', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529338583352029185, 1497086897538789377, 'cps_material_delete', '删除物料', 'cps_material_delete', '', 'iconfont iconicon_delete', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529338949862895617, 1497086897538789377, 'cps_material_export', '导出物料', 'cps_material_export', '', 'iconfont iconicon_roundadd', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529339043613978625, 1497086897538789377, 'cps_material_import', '导入物料', 'cps_material_import', '', 'iconfont iconicon_roundadd', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529339144184999937, 1497086897538789377, 'cps_material_update', '编辑物料', 'cps_material_update', '', 'iconfont iconicon_roundadd', 4, 2, 0, 1, '', 0, 'CPS', 1), (1529339271121416194, 1497086897538789377, 'cps_material_add', '新增物料', 'cps_material_add', '', 'iconfont iconicon_compile', 5, 2, 0, 1, '', 0, 'CPS', 1), (1529342508075528193, 1497086897538789377, 'cps_material_type_create', '新建物料类型', 'cps_material_type_create', '', 'iconfont iconicon_roundadd', 6, 2, 0, 1, '', 0, 'CPS', 1), (1529342695900655617, 1497086897538789377, 'cps_material_type_delete', '删除物料类型', 'cps_material_type_delete', '', 'iconfont iconicon_roundadd', 7, 2, 0, 1, '', 0, 'CPS', 1), (1529349606834384898, 1502512819019243521, 'mdc_status_record_export', '导出', 'mdc_status_record_export', '', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529350075715629057, 1475640981749178369, 'mdc_time_ues_export', '导出', 'mdc_time_ues_export', '', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529350225938821122, 1498900340410212354, 'mdc_efficiency_analysis_export', '导出', 'mdc_efficiency_analysis_export', '', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529350313494917122, 1503199291613646849, 'mdc_output_analysis_export', '导出', 'mdc_output_analysis_export', '', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529350373947420673, 1503250876000481282, 'mdc_alarm_export', '导出', 'mdc_alarm_export', '', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529350477500592129, 1498471500208750594, 'mdc_process_param_export', '导出', 'mdc_process_param_export', '', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529355344185077762, 1496427333921992705, 'technology_files_remove', '删除', 'technology_files_remove', '', 'iconfont iconicon_delete', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529355676495589378, 1491309591410286594, 'maintain_plan_delete', '删除', 'maintain_plan_delete', '', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529355806598705154, 1496427333921992705, 'technology_files_update', '编辑', 'technology_files_update', '', 'iconfont iconicon_compile', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529355819366166530, 1491309591410286594, 'maintain_plan_export', '导出', 'maintain_plan_export', '', 'iconfont iconicon_roundadd', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529355960840040450, 1496427333921992705, 'technology_files_insert', '快速创建', 'technology_files_insert', '', 'iconfont iconicon_roundadd', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529356035871944706, 1491309591410286594, 'maintain_plan_auto', '新建保养计划', 'maintain_plan_auto', '', 'iconfont iconicon_roundadd', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529356338205765633, 1491309591410286594, 'maintain_plan_temp', '新建临时保养', 'maintain_plan_temp', '', 'iconfont iconicon_roundadd', 5, 2, 0, 1, '', 0, 'CPS', 1), (1529356340852371457, 1496427333921992705, 'technology_files_log', '变更日志', 'technology_files_log', '', 'iconfont iconicon_glass', 4, 2, 0, 1, '', 0, 'CPS', 1), (1529356497002115074, 1496427333921992705, 'technology_files_product', '关联产品', 'technology_files_product', '', 'iconfont iconicon_setting', 5, 2, 0, 1, '', 0, 'CPS', 1), (1529356648080945154, 1491309591410286594, 'maintain_plan_perform', '执行', 'maintain_plan_perform', '', 'iconfont iconicon_roundadd', 7, 2, 0, 1, '', 0, 'CPS', 1), (1529356691265499138, 1496427333921992705, 'technology_files_folder', '添加文件', 'technology_files_folder', '', 'iconfont iconicon_roundadd', 6, 2, 0, 1, '', 0, 'CPS', 1), (1529356760790282242, 1491309591410286594, 'maintain_plan_register', '登记', 'maintain_plan_register', '', 'iconfont iconicon_roundadd', 8, 2, 0, 1, '', 0, 'CPS', 1), (1529357431610486785, 1496427333921992705, 'technology_files_art_remove', '文件删除', 'technology_files_art_remove', '', 'iconfont iconicon_delete', 7, 2, 0, 1, '', 0, 'CPS', 1), (1529357546177900545, 1491309591410286594, 'maintain_plan_edit', '保养计划编辑', 'maintain_plan_edit', '', 'iconfont iconicon_roundadd', 10, 2, 0, 1, '', 0, 'CPS', 1), (1529359586543218690, 1498202645019426818, 'technology_catalog_insert', '新增下级', 'technology_catalog_insert', '', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529359774418677761, 1498202645019426818, 'technology_catalog_remove', '删除', 'technology_catalog_remove', '', 'iconfont iconicon_delete', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529360183778553858, 1491940085082005505, 'maintain_record_export', '导出', 'maintain_record_export', '', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529360293895811073, 1491940085082005505, 'maintain_record_perform', '确认', 'maintain_record_perform', '', 'iconfont iconicon_roundadd', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529360403274870785, 1491940085082005505, 'maintain_record_edit', '编辑', 'maintain_record_edit', '', 'iconfont iconicon_roundadd', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529360661270704130, 1497132713708535809, 'archive_catalog_insert', '新增下级', 'archive_catalog_insert', '', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529360898076913665, 1497132713708535809, 'archive_catalog_remove', '删除', 'archive_catalog_remove', '', 'iconfont iconicon_delete', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529361121171943425, 1491221708245405697, 'check_record_add', '新建', 'check_record_add', '', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529361411451334658, 1497129165478219777, 'archived_files_remove', '删除', 'archived_files_remove', '', 'iconfont iconicon_delete', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529362480432623618, 1497029135171686401, 'factory_file_insert', '上传文件', 'factory_file_insert', '', 'iconfont iconicon_send', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529362679754338306, 1497029135171686401, 'factory_file_remove', '删除', 'factory_file_remove', '', 'iconfont iconicon_delete', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529363135868121090, 1495960929735061505, 'operation_log_export', '导出', 'operation_log_export', '', 'iconfont iconicon_share', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529363284572975105, 1491221708245405697, 'check_record_export', '导出', 'check_record_export', '', 'iconfont iconicon_roundadd', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529363411266121729, 1491221708245405697, 'check_record_delete', '点检记录删除', 'check_record_delete', '', 'iconfont iconicon_roundadd', 4, 2, 0, 1, '', 0, 'CPS', 1), (1529363790850633730, 1491282994091601922, 'repair_apply_add', '新建', 'repair_apply_add', '', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529363994689613826, 1491282994091601922, 'repair_apply_export', '导出', 'repair_apply_export', '', 'iconfont iconicon_roundadd', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529364113178701825, 1491282994091601922, 'repair_apply_delete', '删除', 'repair_apply_delete', '', 'iconfont iconicon_roundadd', 4, 2, 0, 1, '', 0, 'CPS', 1), (1529364227414765569, 1491282994091601922, 'repair_apply_register', '登记', 'repair_apply_register', '', 'iconfont iconicon_roundadd', 5, 2, 0, 1, '', 0, 'CPS', 1), (1529364481107243009, 1491282994091601922, 'repair_apply_perform', '执行', 'repair_apply_perform', '', 'iconfont iconicon_roundadd', 7, 2, 0, 1, '', 0, 'CPS', 1), (1529364579748884482, 1491282994091601922, 'repair_apply_edit', '编辑', 'repair_apply_edit', '', 'iconfont iconicon_roundadd', 8, 2, 0, 1, '', 0, 'CPS', 1), (1529364933337100289, 1471285883018977281, 'workstation_add', '新增', 'workstation_add', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529364982133633025, 1491959985118347265, 'repair_record_export', '导出', 'repair_record_export', '', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529365082616573954, 1491959985118347265, 'repair_record_add', '新建', 'repair_record_add', '', 'iconfont iconicon_roundadd', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529365091202314242, 1471285883018977281, 'workstation_group_change', '调整工位组', 'workstation_group_change', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529365139944321026, 1470274120439566338, 'employee_add', '添加员工', 'employee_add', '', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529365291329335297, 1471285883018977281, 'workstation_collect_config', '配置工位采集', 'workstation_collect_config', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529365311826898945, 1491959985118347265, 'repair_record_edit', '编辑', 'repair_record_edit', '', 'iconfont iconicon_roundadd', 4, 2, 0, 1, '', 0, 'CPS', 1), (1529365357532229633, 1470274120439566338, 'department_change', '部门调整', 'department_change', '', 'iconfont iconicon_compile', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529365376100413442, 1471285883018977281, 'workstation_delete', '删除工位', 'workstation_delete', '', '', 4, 2, 0, 1, '', 0, 'CPS', 1), (1529365541737672705, 1491959985118347265, 'repair_record_perform', '确认', 'repair_record_perform', '', 'iconfont iconicon_roundadd', 6, 2, 0, 1, '', 0, 'CPS', 1), (1529365693886050306, 1470274120439566338, 'employee_import', '员工导入', 'employee_import', '', 'iconfont iconicon_send', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529365696209694722, 1518864188126339074, 'trace_export', '导出', 'trace_export', '', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529365863575007233, 1471285883018977281, 'workstation_import', '导入', 'workstation_import', '', '', 5, 2, 0, 1, '', 0, 'CPS', 1), (1529365878473175041, 1470274120439566338, 'employee_export', '员工导出', 'employee_export', '', 'iconfont iconicon_share', 4, 2, 0, 1, '', 0, 'CPS', 1), (1529365958219476993, 1471285883018977281, 'workstation_edit', '编辑', 'workstation_edit', '', '', 6, 2, 0, 1, '', 0, 'CPS', 1), (1529366034983628802, 1471285883018977281, 'workstation_change_calendar', '更换日历', 'workstation_change_calendar', '', '', 7, 2, 0, 1, '', 0, 'CPS', 1), (1529366084954566658, 1519183072176939010, 'trace_flow_settings_add', '增加流程', 'trace_flow_settings_add', '', 'iconfont iconicon_star', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529366159940333569, 1471285883018977281, 'workstation_collect_edit', '编辑工位采集', 'workstation_collect_edit', '', '', 8, 2, 0, 1, '', 0, 'CPS', 1), (1529366192353914882, 1470274120439566338, 'employee_delete', '员工删除', 'employee_delete', '', 'iconfont iconicon_delete', 5, 2, 0, 1, '', 0, 'CPS', 1), (1529366213258326017, 1519183072176939010, 'trace_flow_settings_edit', '编辑', 'trace_flow_settings_edit', '', 'iconfont iconicon_secret', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529366282334318593, 1471285883018977281, 'workbench_add', '创建工作台', 'workbench_add', '', '', 9, 2, 0, 1, '', 0, 'CPS', 1), (1529366287229071361, 1481429815657304065, 'folder_add', '新建文件夹', 'folder_add', '', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529366377121394690, 1519183072176939010, 'trace_flow_settings_del', '删除', 'trace_flow_settings_del', '', 'iconfont iconicon_setting', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529366378954305537, 1471285883018977281, 'workbench_edit', '编辑工作台', 'workbench_edit', '', '', 10, 2, 0, 1, '', 0, 'CPS', 1), (1529366428614864897, 1470274120439566338, 'post_add', '添加岗位', 'post_add', '', 'iconfont iconicon_roundadd', 6, 2, 0, 1, '', 0, 'CPS', 1), (1529366446063169537, 1471285883018977281, 'workbench_delete', '删除工作台', 'workbench_delete', '', '', 11, 2, 0, 1, '', 0, 'CPS', 1), (1529366493181980673, 1481429815657304065, 'folder_back', '返回上一级', 'folder_back', '', 'iconfont iconicon_left', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529366511146184705, 1519183072176939010, 'trace_flow_settings_change_sort', '改变流程维护顺序', 'trace_flow_settings_change_sort', '', 'iconfont iconicon_qq', 4, 2, 0, 1, '', 0, 'CPS', 1), (1529366560206958594, 1471285883018977281, 'workstation_group_add_sub', '工位组新增下级', 'workstation_group_add_sub', '', '', 12, 2, 0, 1, '', 0, 'CPS', 1), (1529366649793097730, 1471285883018977281, 'workstation_group_edit', '工位组修改', 'workstation_group_edit', '', '', 13, 2, 0, 1, '', 0, 'CPS', 1), (1529366713466826753, 1471285883018977281, 'workstation_group_delete', '工位组删除', 'workstation_group_delete', '', '', 14, 2, 0, 1, '', 0, 'CPS', 1), (1529366730336317442, 1470274120439566338, 'post_import', '岗位导入', 'post_import', '', 'iconfont iconicon_send', 7, 2, 0, 1, '', 0, 'CPS', 1), (1529366784077934593, 1481429815657304065, 'file_upload', '上传文件', 'file_upload', '', 'iconfont iconicon_roundadd', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529366814360809473, 1522377449602215938, 'ng_reason_info_insert', '新建', 'ng_reason_info_insert', '', 'iconfont iconicon_sms', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529366837387538434, 1485491717025140738, 'machine_add', '新建', 'machine_add', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529366921986650113, 1522377449602215938, 'ng_reason_info_edit', '编辑', 'ng_reason_info_edit', '', 'iconfont iconicon_setting', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529366993159794690, 1470274120439566338, 'post_export', '岗位导出', 'post_export', '', 'iconfont iconicon_share', 8, 2, 0, 1, '', 0, 'CPS', 1), (1529366993180766210, 1485491717025140738, 'machine_edit', '编辑', 'machine_edit', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529367039523631106, 1522377449602215938, 'ng_reason_info_del', '删除', 'ng_reason_info_del', '', 'iconfont iconicon_share', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529367077117177857, 1481429815657304065, 'file_add', '新建文件', 'file_add', '', 'iconfont iconicon_roundadd', 4, 2, 0, 1, '', 0, 'CPS', 1), (1529367087372251138, 1485491717025140738, 'machine_import', '导入', 'machine_import', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529367232428060673, 1485491717025140738, 'machine_export', '导出', 'machine_export', '', '', 4, 2, 0, 1, '', 0, 'CPS', 1), (1529367234298720257, 1481429815657304065, 'file_copy', '复制', 'file_copy', '', 'iconfont iconicon_share', 5, 2, 0, 1, '', 0, 'CPS', 1), (1529367253756096513, 1523465621521539073, 'ng_trace_reason_page', '工件NG原因', 'ng_trace_reason_page', '', 'iconfont iconicon_glass', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529367315957624833, 1485491717025140738, 'machine_delete', '删除', 'machine_delete', '', '', 5, 2, 0, 1, '', 0, 'CPS', 1), (1529367377517424642, 1523465621521539073, 'ng_trace_reason_insert', 'ng原因补录', 'ng_trace_reason_insert', '', 'iconfont iconicon_sms', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529367397725581313, 1481429815657304065, 'file_move', '移动', 'file_move', '', 'iconfont iconicon_share', 6, 2, 0, 1, '', 0, 'CPS', 1), (1529367400745480193, 1485491717025140738, 'machine_group_rename', '机器组重命名', 'machine_group_rename', '', '', 6, 2, 0, 1, '', 0, 'CPS', 1), (1529367503094886401, 1485491717025140738, 'machine_group_add_sub', '新增下级', 'machine_group_add_sub', '', '', 7, 2, 0, 1, '', 0, 'CPS', 1), (1529367509046603777, 1523465621521539073, 'ng_trace_reason_export', '导出', 'ng_trace_reason_export', '', 'iconfont iconicon_group', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529367512796311553, 1481429815657304065, 'file_delete', '删除', 'file_delete', '', 'iconfont iconicon_delete', 7, 2, 0, 1, '', 0, 'CPS', 1), (1529367667771650049, 1485491717025140738, 'machine_group_delete', '机器组删除', 'machine_group_delete', '', '', 8, 2, 0, 1, '', 0, 'CPS', 1), (1529367738789605378, 1481429815657304065, 'file_rename', '重命名', 'file_rename', '', 'iconfont iconicon_roundclose', 8, 2, 0, 1, '', 0, 'CPS', 1), (1529367809237135361, 1522390934839029761, 'process_add', '快速创建', 'process_add', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529367885154037761, 1522390934839029761, 'process_import', '导入', 'process_import', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529367955769339905, 1522390934839029761, 'process_export', '导出', 'process_export', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529367974333329410, 1470274120439566338, 'post_delete', '岗位删除', 'post_delete', '', 'iconfont iconicon_delete', 9, 2, 0, 1, '', 0, 'CPS', 1), (1529368019027832834, 1522390934839029761, 'process_delete', '删除', 'process_delete', '', '', 4, 2, 0, 1, '', 0, 'CPS', 1), (1529368106030280705, 1522390934839029761, 'process_add_workstation', '新增工位', 'process_add_workstation', '', '', 5, 2, 0, 1, '', 0, 'CPS', 1), (1529368134236975106, 1470274120439566338, 'department_add', '添加部门', 'department_add', '', 'iconfont iconicon_roundadd', 10, 2, 0, 1, '', 0, 'CPS', 1), (1529368158077399042, 1503215833683517442, 'restday_add', '新增', 'restday_add', '', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529368188133781506, 1522390934839029761, 'process_add_prod_area', '新增生产待加工区', 'process_add_prod_area', '', '', 6, 2, 0, 1, '', 0, 'CPS', 1), (1529368239966990337, 1503215833683517442, 'restday_edit', '编辑', 'restday_edit', '', 'iconfont iconicon_roundadd', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529368269578776577, 1470274120439566338, 'department_import', '部门导入', 'department_import', '', 'iconfont iconicon_send', 11, 2, 0, 1, '', 0, 'CPS', 1), (1529368340881944578, 1503215833683517442, 'restday_delete', '删除', 'restday_delete', '', 'iconfont iconicon_roundadd', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529368399618977793, 1483642077594710017, 'machine_add_maintain', '新建保养项', 'machine_add_maintain', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529368440421167106, 1470274120439566338, 'department_export', '部门导出', 'department_export', '', 'iconfont iconicon_share', 12, 2, 0, 1, '', 0, 'CPS', 1), (1529368462378348545, 1483642077594710017, 'machine_edit_maintain', '编辑保养项', 'machine_edit_maintain', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529368471857475585, 1481429815657304065, 'file_change_version', '设置为当前版本', 'file_change_version', '', 'iconfont iconicon_exchange', 9, 2, 0, 1, '', 0, 'CPS', 1), (1529368531353677826, 1483642077594710017, 'machine_import_maintain', '导入保养项', 'machine_import_maintain', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529368588253605890, 1483642077594710017, 'machine_export_maintain', '导出保养项', 'machine_export_maintain', '', '', 4, 2, 0, 1, '', 0, 'CPS', 1), (1529368671934164993, 1470274120439566338, 'department_delete', '部门删除', 'department_delete', '', 'iconfont iconicon_delete', 13, 2, 0, 1, '', 0, 'CPS', 1), (1529368696349208577, 1483642077594710017, 'machine_delete_maintain', '删除保养项', 'machine_delete_maintain', '', '', 5, 2, 0, 1, '', 0, 'CPS', 1), (1529368775957098498, 1483642077594710017, 'machine_add_check', '新建点检项目', 'machine_add_check', '', '', 6, 2, 0, 1, '', 0, 'CPS', 1), (1529368792184860673, 1481429369576296449, 'archive_directory_file_insert', '归档', 'archive_directory_file_insert', '', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529368835591712769, 1483642077594710017, 'machine_edit_check', '编辑点检项目', 'machine_edit_check', '', '', 7, 2, 0, 1, '', 0, 'CPS', 1), (1529368856529678337, 1469141105228611586, 'calender_delete', '日历删除', 'calender_delete', '', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529368912016125954, 1483642077594710017, 'machine_import_check', '导入点检项目', 'machine_import_check', '', '', 8, 2, 0, 1, '', 0, 'CPS', 1), (1529368916680192001, 1481429369576296449, 'transfer_directory_delete', '删除', 'transfer_directory_delete', '', 'iconfont iconicon_delete', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529368938117279745, 1469141105228611586, 'calender_add', '日历新增', 'calender_add', '', 'iconfont iconicon_roundadd', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529368973739503617, 1483642077594710017, 'machine_export_check', '导出点检项目', 'machine_export_check', '', '', 9, 2, 0, 1, '', 0, 'CPS', 1), (1529369011991556097, 1469141105228611586, 'calender_edit', '日历编辑', 'calender_edit', '', 'iconfont iconicon_roundadd', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529369081000439810, 1469141105228611586, 'shift_delete', '班制删除', 'shift_delete', '', 'iconfont iconicon_roundadd', 4, 2, 0, 1, '', 0, 'CPS', 1), (1529369152597209090, 1469141105228611586, 'shift_add', '班制新增', 'shift_add', '', 'iconfont iconicon_roundadd', 5, 2, 0, 1, '', 0, 'CPS', 1), (1529369226563760129, 1469141105228611586, 'shift_edit', '班制编辑', 'shift_edit', '', 'iconfont iconicon_roundadd', 6, 2, 0, 1, '', 0, 'CPS', 1), (1529369296289869825, 1481428568128688130, 'file_transfer_current', '传输至当前目标', 'file_transfer_current', '', 'iconfont iconicon_next_arrow', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529369315491393537, 1483642077594710017, 'machine_delete_check', '删除点检项目', 'machine_delete_check', '', '', 10, 2, 0, 1, '', 0, 'CPS', 1), (1529369396336603138, 1481428568128688130, 'file_transfer_up_path', '上传至上方路径', 'file_transfer_up_path', '', 'iconfont iconicon_left', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529369417446535170, 1483642077594710017, 'machine_add_check_item', '添加点检项', 'machine_add_check_item', '', '', 11, 2, 0, 1, '', 0, 'CPS', 1), (1529369521544966145, 1483642077594710017, 'machine_add_malfunction_type', '新建故障类型', 'machine_add_malfunction_type', '', '', 12, 2, 0, 1, '', 0, 'CPS', 1), (1529369583838769153, 1483642077594710017, 'machine_edit_malfunction_type', '编辑故障类型', 'machine_edit_malfunction_type', '', '', 13, 2, 0, 1, '', 0, 'CPS', 1), (1529369703766503426, 1483642077594710017, 'machine_import_malfunction_type', '导入故障类型', 'machine_import_malfunction_type', '', '', 14, 2, 0, 1, '', 0, 'CPS', 1), (1529369787849715714, 1483642077594710017, 'machine_export_malfunction_type', '导出故障类型', 'machine_export_malfunction_type', '', '', 15, 2, 0, 1, '', 0, 'CPS', 1), (1529369853738037249, 1483642077594710017, 'machine_delete_malfunction_type', '删除故障类型', 'machine_delete_malfunction_type', '', '', 16, 2, 0, 1, '', 0, 'CPS', 1), (1529369917344657409, 1483642077594710017, 'machine_add_type', '新建机器类型', 'machine_add_type', '', '', 17, 2, 0, 1, '', 0, 'CPS', 1), (1529369976190742529, 1483642077594710017, 'machine_import_type', '导入机器类型', 'machine_import_type', '', '', 18, 2, 0, 1, '', 0, 'CPS', 1), (1529370059997130753, 1483642077594710017, 'machine_export_type', '导出机器类型', 'machine_export_type', '', '', 19, 2, 0, 1, '', 0, 'CPS', 1), (1529370137914716162, 1483642077594710017, 'machine_delete_type', '删除机器类型', 'machine_delete_type', '', '', 20, 2, 0, 1, '', 0, 'CPS', 1), (1529370193631850497, 1483642077594710017, 'machine_type_add_maintain', '添加保养项目', 'machine_type_add_maintain', '', '', 21, 2, 0, 1, '', 0, 'CPS', 1), (1529370302885081090, 1483642077594710017, 'machine_type_edit_maintain', '编辑保养项目', 'machine_type_edit_maintain', '', '', 22, 2, 0, 1, '', 0, 'CPS', 1), (1529370368333000705, 1483642077594710017, 'machine_type_delete_maintain', '删除保养项目', 'machine_type_delete_maintain', '', '', 23, 2, 0, 1, '', 0, 'CPS', 1), (1529370433348907010, 1483642077594710017, 'machine_type_add_maintain_item', '添加保养项', 'machine_type_add_maintain_item', '', '', 24, 2, 0, 1, '', 0, 'CPS', 1), (1529370501607010305, 1483642077594710017, 'machine_type_delete_maintain_item', '删除保养项', 'machine_type_delete_maintain_item', '', '', 25, 2, 0, 1, '', 0, 'CPS', 1), (1529370634105073666, 1483642077594710017, 'machine_type_add_check', '添加点检项目', 'machine_type_add_check', '', '', 26, 2, 0, 1, '', 0, 'CPS', 1), (1529370696457596929, 1483642077594710017, 'machine_type_delete_check', '删除点检项目', 'machine_type_delete_check', '', '', 27, 2, 0, 1, '', 0, 'CPS', 1), (1529370868902211585, 1503621096733990913, 'work_condition_add', '新建', 'work_condition_add', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529370928301944833, 1503621096733990913, 'work_condition_edit', '编辑', 'work_condition_edit', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529370995448557569, 1503621096733990913, 'work_condition_delete', '删除', 'work_condition_delete', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529373447916826626, 1519129245830651905, 'tray_fixture_import', '托盘-夹具导入', 'tray_fixture_import', '', 'iconfont iconicon_roundadd', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529373990328414210, 1519129245830651905, 'tray_fixture_delete', '托盘-夹具删除夹具', 'tray_fixture_delete', '', 'iconfont iconicon_roundadd', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529374249859362818, 1519129245830651905, 'tray_fixture_add', '托盘-夹具新增夹具', 'tray_fixture_add', '', 'iconfont iconicon_roundadd', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529374352737251329, 1519129245830651905, 'tray_fixture_add_file', '添加工艺文件', 'tray_fixture_add_file', '', 'iconfont iconicon_roundadd', 4, 2, 0, 1, '', 0, 'CPS', 1), (1529374448799395842, 1519129245830651905, 'tray_fixture_delete_file', '删除工艺文件', 'tray_fixture_delete_file', '', 'iconfont iconicon_roundadd', 5, 2, 0, 1, '', 0, 'CPS', 1), (1529374725875118082, 1519129245830651905, 'tray_tree_remove', '删除托盘组', 'tray_tree_remove', '', 'iconfont iconicon_roundadd', 6, 2, 0, 1, '', 0, 'CPS', 1), (1529374836231450626, 1519129245830651905, 'tray_add', '新建托盘', 'tray_add', '', 'iconfont iconicon_roundadd', 7, 2, 0, 1, '', 0, 'CPS', 1), (1529375362050371585, 1519129245830651905, 'tray_import', '导入托盘', 'tray_import', '', 'iconfont iconicon_roundadd', 8, 2, 0, 1, '', 0, 'CPS', 1), (1529375556041125889, 1519129245830651905, 'tray_edit', '编辑托盘', 'tray_edit', '', 'iconfont iconicon_roundadd', 9, 2, 0, 1, '', 0, 'CPS', 1), (1529375683074011137, 1519129245830651905, 'tray_delete', '删除托盘', 'tray_delete', '', 'iconfont iconicon_roundadd', 10, 2, 0, 1, '', 0, 'CPS', 1), (1529375809909764097, 1519129245830651905, 'tray_m_add', '新建托盘面', 'tray_m_add', '', 'iconfont iconicon_roundadd', 11, 2, 0, 1, '', 0, 'CPS', 1), (1529375923067891714, 1519129245830651905, 'tray_m_edit', '编辑托盘面', 'tray_m_edit', '', 'iconfont iconicon_roundadd', 12, 2, 0, 1, '', 0, 'CPS', 1), (1529375988096380930, 1519129245830651905, 'tray_m_delete', '删除托盘面', 'tray_m_delete', '', 'iconfont iconicon_roundadd', 13, 2, 0, 1, '', 0, 'CPS', 1), (1529376116421111809, 1519129245830651905, 'fixture_add', '添加夹具', 'fixture_add', '', 'iconfont iconicon_roundadd', 14, 2, 0, 1, '', 0, 'CPS', 1), (1529376218330116098, 1519129245830651905, 'fixture_edit', '编辑夹具', 'fixture_edit', '', 'iconfont iconicon_roundadd', 15, 2, 0, 1, '', 0, 'CPS', 1), (1529376249053392898, 1491221708245405697, 'check_record_edit', '编辑', 'check_record_edit', '', 'iconfont iconicon_roundadd', 6, 2, 0, 1, '', 0, 'CPS', 1), (1529376296767795202, 1519129245830651905, 'fixture_delete', '删除夹具', 'fixture_delete', '', 'iconfont iconicon_roundadd', 16, 2, 0, 1, '', 0, 'CPS', 1), (1529376361490100226, 1519129245830651905, 'fixture_import', '导入夹具', 'fixture_import', '', 'iconfont iconicon_roundadd', 17, 2, 0, 1, '', 0, 'CPS', 1), (1529380751882006530, 1496427333921992705, 'technology_files_product_remove', '产品删除', 'technology_files_product_remove', '', 'iconfont iconicon_delete', 8, 2, 0, 1, '', 0, 'CPS', 1), (1529382006654185473, 1519129245830651905, 'fixture_add_file', '夹具添加文件', 'fixture_add_file', '', '', 18, 2, 0, 1, '', 0, 'CPS', 1), (1529382089873371137, 1519129245830651905, 'fixture_delete_file', '夹具删除文件', 'fixture_delete_file', '', '', 19, 2, 0, 1, '', 0, 'CPS', 1), (1529382093140733953, 1496427333921992705, 'technology_files_product_export', '关联日志导出', 'technology_files_product_export', '', 'iconfont iconicon_send', 9, 2, 0, 1, '', 0, 'CPS', 1), (1529383571028914178, 1519129245830651905, 'fixture_m_delete', '解除关联', 'button', '', '', 25, 2, 0, 1, '', 0, 'CPS', 1), (1529384518543159297, 1522048292781465601, 'tray_storage_add', '托盘存放新增', 'button', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529384721660719106, 1522048292781465601, 'tray_storage_delete', '托盘存放删除', 'button', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529384876564754433, 1522048292781465601, 'tray_storage_import', '托盘存放导入', 'button', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529386664294559745, 1503546274154123265, 'area_add', '库区新增', 'button', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529386927948509185, 1503546274154123265, 'area_edit', '库区编辑', 'button', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529388585562615809, 1470274120439566338, 'employee_edit', '编辑员工', 'employee_edit', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529388782367748097, 1503546274154123265, 'area_delete', '库区删除', 'button', '', '', 4, 2, 0, 1, '', 0, 'CPS', 1), (1529388788273328129, 1470274120439566338, 'post_edit', '编辑岗位', 'post_edit', '', '', 6, 2, 0, 1, '', 0, 'CPS', 1), (1529388903142731778, 1503546274154123265, 'area_location_download', '下载模板', 'button', '', '', 5, 2, 0, 1, '', 0, 'CPS', 1), (1529389046059446273, 1470274120439566338, 'department_edit', '编辑部门', 'department_edit', '', '', 10, 2, 0, 1, '', 0, 'CPS', 1), (1529389071569203202, 1503546274154123265, 'area_location_import', '导入', 'button', '', '', 6, 2, 0, 1, '', 0, 'CPS', 1), (1529389149553897473, 1503546274154123265, 'area_location_export', '导出', 'button', '', '', 7, 2, 0, 1, '', 0, 'CPS', 1), (1529389242684223489, 1503546274154123265, 'location_add', '库位新增', 'button', '', '', 8, 2, 0, 1, '', 0, 'CPS', 1), (1529389331506999297, 1503546274154123265, 'location_edit', '库位编辑', 'button', '', '', 9, 2, 0, 1, '', 0, 'CPS', 1), (1529389425643958273, 1503546274154123265, 'location_delete', '库位删除', 'button', '', '', 10, 2, 0, 1, '', 0, 'CPS', 1), (1529389544124657665, 1503546274154123265, 'location_grid_add', '货格新增', 'button', '', '', 11, 2, 0, 1, '', 0, 'CPS', 1), (1529389636139298818, 1503546274154123265, 'location_grid_edit', '货格编辑', 'button', '', '', 12, 2, 0, 1, '', 0, 'CPS', 1), (1529389768754802689, 1503546274154123265, 'location_grid_delete', '货格删除', 'button', '', '', 14, 2, 0, 1, '', 0, 'CPS', 1), (1529389913919664130, 1526040185400328193, 'stock_out_add', '出库类型新增', 'button', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529389988997705729, 1526040185400328193, 'stock_out_delete', '出库类型删除', 'button', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529390068181970945, 1526040185400328193, 'stock_in_add', '入库类型新增', 'button', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529390151795421186, 1526040185400328193, 'stock_in_delete', '入库类型删除', 'button', '', '', 4, 2, 0, 1, '', 0, 'CPS', 1), (1529397280275116034, 1527115790989488129, 'cps_material_storage_delete', '删除物料存放', 'cps_material_storage_delete', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529397357047656450, 1527115790989488129, 'cps_material_storage_import', '导入物料存放', 'cps_material_storage_import', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529406721666002945, 1519129245830651905, 'tray_tree_add', '新建托盘组', 'button', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529416769494528002, 1519129245830651905, 'fixture_tree_add', '夹具组新增', 'button', '', '', 24, 2, 0, 1, '', 0, 'CPS', 1), (1529418917187891202, 1518864188126339074, 'trace_process_parameters', '流程参数', 'trace_process_parameters', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529442599700475906, 1493759281711730689, 'cps_supplier_add', '供应商新增', 'button', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529442690368745474, 1493759281711730689, 'cps_supplier_delete', '供应商删除', 'button', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529442794328764418, 1493759281711730689, 'cps_supplier_edit', '供应商编辑', 'button', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529443045554991105, 1523489440260923394, 'craft_version_add', '新增版本', 'button', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529443126387617793, 1523489440260923394, 'craft_version_copy', '复制版本', 'button', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529443240388800513, 1523489440260923394, 'craft_version_edition', '定版', 'button', '', '', 4, 2, 0, 1, '', 0, 'CPS', 1), (1529443326887931905, 1523489440260923394, 'craft_process_add', '新增工序', 'button', '', '', 5, 2, 0, 1, '', 0, 'CPS', 1), (1529443455481098242, 1523489440260923394, 'craft_version_delete', '删除版本', 'button', '', '', 6, 2, 0, 1, '', 0, 'CPS', 1), (1529443547525099522, 1523489440260923394, 'craft_process_delete', '删除工序', 'button', '', '', 7, 2, 0, 1, '', 0, 'CPS', 1), (1529443623559442433, 1523489440260923394, 'craft_version_update', '编辑', 'button', '', '', 8, 2, 0, 1, '', 0, 'CPS', 1), (1529443774336282625, 1522823470509395969, 'cps_product_add', '产品新增', 'button', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529443827880767490, 1522823470509395969, 'cps_product_delete', '产品删除', 'button', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529443896117899265, 1522823470509395969, 'cps_product_import', '产品导入', 'button', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529443976254271490, 1522823470509395969, 'cps_product_export', '产品导出', 'button', '', '', 4, 2, 0, 1, '', 0, 'CPS', 1), (1529444128830468098, 1522823470509395969, 'cps_product_edit', '产品编辑', 'button', '', '', 5, 2, 0, 1, '', 0, 'CPS', 1), (1529444392463446018, 1522823470509395969, 'cps_product_type_add', '产品类型新增', 'button', '', '', 6, 2, 0, 1, '', 0, 'CPS', 1), (1529444482309632001, 1522823470509395969, 'cps_product_type_edit', '产品类型编辑', 'button', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529444597921427457, 1522823470509395969, 'cps_product_type_delete', '产品类型删除', 'button', '', '', 8, 2, 0, 1, '', 0, 'CPS', 1), (1530024832266088449, 1481429369576296449, 'transfer_directory_switch_file', '设置为当前版本', 'transfer_directory_switch_file', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1530110634797215746, 1483642077594710017, 'machine_edit_check_item', '编辑点检项', 'machine_edit_check_item', '', '', 28, 2, 0, 1, '', 0, 'CPS', 1), (1530110770399064065, 1483642077594710017, 'machine_delete_check_item', '删除点检项', 'machine_delete_check_item', '', '', 29, 2, 0, 1, '', 0, 'CPS', 1), (1530125301691228162, 1526040185400328193, 'stock_in_edit', '入库类型编辑', 'button', '', '', 5, 2, 0, 1, '', 0, 'CPS', 1), (1530125450446413825, 1526040185400328193, 'stock_out_edit', '出库类型编辑', 'button', '', '', 6, 2, 0, 1, '', 0, 'CPS', 1), (1530359776853700609, 1519129245830651905, 'fixture_tree_delete', '夹具组删除', 'button', '', '', 26, 2, 0, 1, '', 0, 'CPS', 1), (1530361760566554626, 1519129245830651905, 'fixture_tree_edit', '夹具组编辑', 'button', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1), (1530362071809077250, 1519129245830651905, 'tray_tree_edit', '托盘组编辑', 'button', '', '', 29, 2, 0, 1, '', 0, 'CPS', 1), (1530365119126122498, 1483642077594710017, 'machine_update_type', '编辑机器类型', 'machine_update_type', '', '', 21, 2, 0, 1, '', 0, 'CPS', 1), (1530366417586171906, 1522390934839029761, 'process_delete_prod_area', '删除生产待加工区', 'process_delete_prod_area', '', '', 7, 2, 0, 1, '', 0, 'CPS', 1), (1530367646131367937, 1522390934839029761, 'process_delete_workstation', '删除工位', 'process_delete_workstation', '', '', 8, 2, 0, 1, '', 0, 'CPS', 1), (1530367772786765825, 1522390934839029761, 'process_update', '编辑工序', 'process_update', '', '', 9, 2, 0, 1, '', 0, 'CPS', 1), (1530367877216546817, 1522390934839029761, 'process_supplier_delete', '删除供应商', 'process_supplier_delete', '', '', 10, 2, 0, 1, '', 0, 'CPS', 1), (1530367965984796673, 1522390934839029761, 'process_supplier_add', '新增供应商', 'process_supplier_add', '', '', 11, 2, 0, 1, '', 0, 'CPS', 1), (1531068413942996993, 1497086897538789377, 'cps_eidt_material_type', '编辑物料类型', 'cps_eidt_material_type', '', '', 8, 2, 0, 1, '', 0, 'CPS', 1), (1531068566301089794, 1527115790989488129, 'cps_add_,material_stroage', '添加物料存放', 'cps_add_,material_stroage', '', '', 9, 2, 0, 1, '', 0, 'CPS', 1), (1529300353118318593, 1518832588427309057, 'component_add', '新增', 'component_add', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529300428330577922, 1518832588427309057, 'component_delete', '删除', 'component_delete', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529300502066442242, 1518832588427309057, 'component_import', '导入', 'component_import', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529300581800161282, 1518832588427309057, 'component_export', '导出', 'component_export', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529300709508329473, 1518832588427309057, 'component_edit', '编辑', 'component_edit', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529301061536264193, 1518832798666797058, 'comp_type_add', '新增', 'comp_type_add', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529301153127280641, 1518832798666797058, 'comp_type_edit', '编辑', 'comp_type_edit', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529301209179959298, 1518832798666797058, 'comp_type_delete', '删除', 'comp_type_delete', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529301306865299457, 1503616665762193409, 'kanban_add', '新建', 'kanban_add', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529301423924129793, 1503616665762193409, 'kanban_edit', '编辑', 'kanban_edit', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1), (1529301593445314562, 1503616665762193409, 'kanban_delete', '删除', 'kanban_delete', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529301906063568898, 1123598815738675204, 'user_unlock', '解锁', 'user_unlock', '', '', 3, 2, 0, 1, '', 0, 'CPS', 0), (1529303645084921857, 1123598815738675308, 'role_related_account_add', '添加员工', 'role_related_account_add', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529303719558983682, 1123598815738675308, 'role_related_account_delete', '删除员工', 'role_related_account_delete', '', '', 4, 2, 0, 1, '', 0, 'CPS', 1), (1529304509010882561, 1123598815738675308, 'role_grant', '角色授权(保存按钮)', 'role_grant', '', '', 4, 2, 0, 1, '', 0, 'CPS', 1), (1529304675503779842, 1123598815738675311, 'api_scope_add', '新建', 'api_scope_add', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1), (1529304749487108097, 1123598815738675311, 'api_scope_delete', '删除', 'api_scope_delete', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1), (1529304859042328578, 1504297396495781890, 'language_add', '新增', 'language_add', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1), (1585556173191200769, 0, 'hmi_setting', '设置', 'hmi_setting', '/setting', '', 5, 1, 0, 1, '', 0, 'HMI', 1); -- 脚本初始化 -- 数据字典 INSERT INTO blade_dict (id, parent_id, code, dict_key, dict_value, sort, remark, is_sealed, is_deleted) VALUES (99557399249027072, 0, 'employee_status', '-1', '员工状态', 1, NULL, 0, 0), (99557399249027073, 99557399249027072, 'employee_status', '1', '在职', 1, NULL, 0, 0), (99557399249027074, 99557399249027072, 'employee_status', '0', '离职', 2, NULL, 0, 0), (1123598814738675204, 0, 'notice', '-1', '通知类型', 2, NULL, 0, 0), (1123598814738675205, 1123598814738675204, 'notice', '1', '发布通知', 1, NULL, 0, 0), (1123598814738675206, 1123598814738675204, 'notice', '2', '批转通知', 2, NULL, 0, 0), (1123598814738675207, 1123598814738675204, 'notice', '3', '转发通知', 3, NULL, 0, 0), (1123598814738675208, 1123598814738675204, 'notice', '4', '指示通知', 4, NULL, 0, 0), (1123598814738675209, 1123598814738675204, 'notice', '5', '任免通知', 5, NULL, 0, 0), (1123598814738675210, 1123598814738675204, 'notice', '6', '事务通知', 6, NULL, 0, 0), (1123598814738675231, 0, 'data_scope_type', '-1', '数据权限', 9, '', 0, 0), (1123598814738675232, 1123598814738675231, 'data_scope_type', '1', '全部可见', 1, NULL, 0, 0), (1123598814738675233, 1123598814738675231, 'data_scope_type', '2', '本人可见', 2, NULL, 0, 0), (1123598814738675234, 1123598814738675231, 'data_scope_type', '3', '所在机构可见', 3, NULL, 0, 0), (1123598814738675235, 1123598814738675231, 'data_scope_type', '4', '所在机构及子级可见', 4, NULL, 0, 0), (1123598814738675236, 1123598814738675231, 'data_scope_type', '5', '自定义', 5, NULL, 0, 0), (1123598814738675237, 0, 'api_scope_type', '-1', '接口权限', 10, NULL, 0, 0), (1123598814738675238, 1123598814738675237, 'api_scope_type', '1', '系统接口', 1, NULL, 0, 0), (1123598814738675239, 1123598814738675237, 'api_scope_type', '2', '业务接口', 2, NULL, 0, 0), (1123598814738675240, 0, 'scope_category', '-1', '权限类型', 11, '', 0, 0), (1123598814738675241, 1123598814738675240, 'scope_category', '1', '数据权限', 1, NULL, 0, 0), (1123598814738675242, 1123598814738675240, 'scope_category', '2', '接口权限', 2, NULL, 0, 0), (1123598814738677220, 0, 'sms', '-1', '短信服务类型', 13, '', 0, 0), (1123598814738677221, 1123598814738677220, 'sms', '1', '云片', 1, NULL, 0, 0), (1123598814738677222, 1123598814738677220, 'sms', '2', '七牛云', 2, NULL, 0, 0), (1123598814738677223, 1123598814738677220, 'sms', '3', '阿里云', 3, NULL, 0, 0), (1123598814738677224, 1123598814738677220, 'sms', '4', '腾讯云', 4, NULL, 0, 0), (1123598814738777230, 0, 'region', '-1', '行政区划', 21, '', 0, 0), (1123598814738777231, 1123598814738777230, 'region', '0', '国家', 0, NULL, 0, 0), (1123598814738777232, 1123598814738777230, 'region', '1', '省份/直辖市', 1, NULL, 0, 0), (1123598814738777233, 1123598814738777230, 'region', '2', '地市', 2, NULL, 0, 0), (1123598814738777234, 1123598814738777230, 'region', '3', '区县', 3, NULL, 0, 0), (1123598814738777235, 1123598814738777230, 'region', '4', '乡镇', 4, NULL, 0, 0), (1123598814738777236, 1123598814738777230, 'region', '5', '村委', 5, NULL, 0, 0), (1469141558125363202, 0, 'data_scope_category', '-1', '数据权限类型', 1, '', 0, 0), (1469141645106839553, 1469141558125363202, 'data_scope_category', '1', '账号', 1, '', 0, 0), (1469141698219311105, 1469141558125363202, 'data_scope_category', '2', '员工', 2, '', 0, 0), (1470226307732238337, 0, 'group_tag', '-1', '组标签', 23, '', 0, 0), (1470226383577837777, 1470226307732238337, 'group_tag', 'workshop', '车间', 1, '', 0, 0), (1473097089466474498, 0, 'workstation_type', '-1', '工位类型', 24, '', 0, 0), (1473097582771150849, 1473097089466474498, 'work_station_type', '0', '机器', 1, '', 0, 0), (1473097710710005761, 1473097089466474498, 'workstation_type', '1', '人工', 2, '', 0, 0), (1473097757963034626, 1473097089466474498, 'workstation_type', '0', '机器', 1, '', 0, 0), (1473253115979046913, 0, 'collect_item_access', '-1', '采集项的读写权限', 30, '', 0, 0), (1473253383550476289, 1473253115979046913, 'collect_item_access', '1', '只读', 1, '', 0, 0), (1473253440899194881, 1473253115979046913, 'collect_item_access', '2', '读写', 2, '', 0, 0), (1475698142508552193, 0, 'dmp_data_type', '-1', '采集项数据类别', 31, '', 0, 0), (1475702115122614273, 1475698142508552193, 'dmp_data_type', '0', '位', 0, '', 0, 0), (1475702168725819394, 1475698142508552193, 'dmp_data_type', '1', '字节', 1, '', 0, 0), (1475702292315181057, 1475698142508552193, 'dmp_data_type', '2', '字', 2, '', 0, 0), (1475702365900050434, 1475698142508552193, 'dmp_data_type', '3', '双字', 3, '', 0, 0), (1475702407314608129, 1475698142508552193, 'dmp_data_type', '4', '四字', 4, '', 0, 0), (1475702487505506306, 1475698142508552193, 'dmp_data_type', '5', '有符号字节', 5, '', 0, 0), (1475702548578766849, 1475698142508552193, 'dmp_data_type', '6', '有符号字', 6, '', 0, 0), (1475702658792493058, 1475698142508552193, 'dmp_data_type', '7', '有符号双字', 7, '', 0, 0), (1475702719416963074, 1475698142508552193, 'dmp_data_type', '8', '有符号四字', 8, '', 0, 0), (1475702786618101761, 1475698142508552193, 'dmp_data_type', '9', '单精度浮点数', 9, '', 0, 0), (1475702855849283585, 1475698142508552193, 'dmp_data_type', '10', '双精度浮点数', 10, '', 0, 0), (1475703035109642241, 1475698142508552193, 'dmp_data_type', '11', '字符串', 11, '', 0, 0), (1475703111722799106, 1475698142508552193, 'dmp_data_type', '12', '日期时间', 12, '', 0, 0), (1475703187388043265, 1475698142508552193, 'dmp_data_type', '255', '任意类型', 13, '', 0, 0), (1480749273437089794, 1475698142508552193, 'dmp_data_type', '256', '位数组', 14, '', 0, 0), (1480749421596684289, 1475698142508552193, 'dmp_data_type', '257', '字节数组', 15, '', 0, 0), (1480749604946489345, 1475698142508552193, 'dmp_data_type', '258', '字数组', 16, '', 0, 0), (1480749720776388610, 1475698142508552193, 'dmp_data_type', '259', '双字数组', 17, '', 0, 0), (1480750041464483841, 1475698142508552193, 'dmp_data_type', '260', '四字数组', 18, '', 0, 0), (1480750154173820930, 1475698142508552193, 'dmp_data_type', '261', '有符号字节数组', 19, '', 0, 0), (1480750242333896705, 1475698142508552193, 'dmp_data_type', '262', '有符号字数组', 20, '', 0, 0), (1480750359069765634, 1475698142508552193, 'dmp_data_type', '263', '有符号双字数组', 21, '', 0, 0), (1480750465185656833, 1475698142508552193, 'dmp_data_type', '264', '有符号四字数组', 22, '', 0, 0), (1480750556659232770, 1475698142508552193, 'dmp_data_type', '265', '单精度浮点数数组', 23, '', 0, 0), (1480750651689578497, 1475698142508552193, 'dmp_data_type', '266', '双精度浮点数数组', 24, '', 0, 0), (1480750732920664066, 1475698142508552193, 'dmp_data_type', '267', '字符串数组', 25, '', 0, 0), (1480750819583373314, 1475698142508552193, 'dmp_data_type', '268', '日期时间数组', 26, '', 0, 0), (1483633958570156034, 0, 'machine_use_state', '-1', '使用状态', 1, '', 0, 0), (1483634714882859010, 1483633958570156034, 'machine_use_state', '1', '使用中', 1, '', 0, 0), (1483634789105262594, 1483633958570156034, 'machine_use_state', '2', '维修中', 2, '', 0, 0), (1483634917748760577, 1483633958570156034, 'machine_use_state', '3', '保养中', 3, '', 0, 0), (1483634993594359809, 1483633958570156034, 'machine_use_state', '4', '出租中', 4, '', 0, 0), (1483635027341729794, 1483633958570156034, 'machine_use_state', '5', '租入中', 5, '', 0, 0), (1483633855511912449, 0, 'machine_life_state', '-1', '生命状态', 1, '', 0, 0), (1483634254260199425, 1483633855511912449, 'machine_life_state', '1', '在用', 1, '', 0, 0), (1483634475610398722, 1483633855511912449, 'machine_life_state', '2', '禁用', 2, '', 0, 0), (1483634519495401473, 1483633855511912449, 'machine_life_state', '3', '在建', 3, '', 0, 0), (1476070682117931010, 0, 'notify-biz-key', '-1', '通知业务', 0, '', 0, 0), (1476071013103042561, 1476070682117931010, 'notify-biz-key', 'tpm-repair-apply', 'TPM维修通知', 1, '', 0, 0), (1483766860672450562, 0, 'material_property', '-1', '物料性质', 32, '', 0, 0), (1483767051005771778, 1483766860672450562, 'material_property', '1', '原材料', 1, '', 0, 0), (1483767088758702081, 1483766860672450562, 'material_property', '2', '半成品', 2, '', 0, 0), (1483767127228858370, 1483766860672450562, 'material_property', '3', '成品', 3, '', 0, 0), (1483767182425899010, 1483766860672450562, 'material_property', '4', '备品备件', 4, '', 0, 0), (1483767254358212609, 1483766860672450562, 'material_property', '5', '辅助用品', 5, '', 0, 0), (1483767283269550082, 1483766860672450562, 'material_property', '9', '其他', 9, '', 0, 0), (1123598814738675201, 0, 'sex', '-1', '性别', 1, NULL, 0, 0), (1123598814738675202, 1123598814738675201, 'sex', '1', '男', 1, NULL, 0, 0), (1123598814738675203, 1123598814738675201, 'sex', '2', '女', 2, NULL, 0, 0), (1123598814738675211, 0, 'menu_category', '-1', '菜单类型', 3, NULL, 0, 0), (1123598814738675212, 1123598814738675211, 'menu_category', '1', '菜单', 1, NULL, 0, 0), (1123598814738675213, 1123598814738675211, 'menu_category', '2', '按钮', 2, NULL, 0, 0), (1123598814738675214, 0, 'button_func', '-1', '按钮功能', 4, NULL, 0, 0), (1123598814738675215, 1123598814738675214, 'button_func', '1', '工具栏', 1, NULL, 0, 0), (1123598814738675216, 1123598814738675214, 'button_func', '2', '操作栏', 2, NULL, 0, 0), (1123598814738675217, 1123598814738675214, 'button_func', '3', '工具操作栏', 3, NULL, 0, 0), (1123598814738675218, 0, 'yes_no', '-1', '是否', 5, NULL, 0, 0), (1123598814738675219, 1123598814738675218, 'yes_no', '1', '否', 1, NULL, 0, 0), (1123598814738675220, 1123598814738675218, 'yes_no', '2', '是', 2, NULL, 0, 0), (1123598814738675221, 0, 'flow', '-1', '流程类型', 7, '', 0, 0), (1123598814738675222, 1123598814738675221, 'flow', '1', '请假流程', 1, 'leave', 0, 0), (1123598814738675223, 1123598814738675221, 'flow', '2', '报销流程', 2, 'expense', 0, 0), (1123598814738675227, 0, 'org_category', '-1', '机构类型', 8, '', 0, 0), (1123598814738675228, 1123598814738675227, 'org_category', '1', '公司', 1, NULL, 0, 0), (1123598814738675229, 1123598814738675227, 'org_category', '2', '部门', 2, NULL, 0, 0), (1123598814738675230, 1123598814738675227, 'org_category', '3', '小组', 3, NULL, 0, 0), (1123598814738676224, 0, 'oss', '-1', '对象存储类型', 6, NULL, 0, 0), (1123598814738676225, 1123598814738676224, 'oss', '1', 'minio', 1, NULL, 0, 0), (1123598814738676226, 1123598814738676224, 'oss', '2', '七牛云', 2, NULL, 0, 0), (1123598814738676227, 1123598814738676224, 'oss', '3', '阿里云', 3, NULL, 0, 0), (1123598814738676228, 1123598814738676224, 'oss', '4', '腾讯云', 4, NULL, 0, 0), (1123598814738777220, 0, 'post_category', '-1', '岗位类型', 12, NULL, 0, 0), (1123598814738777221, 1123598814738777220, 'post_category', '1', '高层', 1, NULL, 0, 0), (1123598814738777222, 1123598814738777220, 'post_category', '2', '中层', 2, NULL, 0, 0), (1123598814738777223, 1123598814738777220, 'post_category', '3', '基层', 3, NULL, 0, 0), (1123598814738777224, 1123598814738777220, 'post_category', '4', '其他', 4, NULL, 0, 0), (1123598814738778200, 0, 'user_type', '-1', '用户平台', 14, NULL, 0, 0), (1123598814738778201, 1123598814738778200, 'user_type', '1', 'WEB', 1, NULL, 0, 0), (1123598814738778202, 1123598814738778200, 'user_type', '2', 'APP', 2, NULL, 0, 0), (1123598814738778203, 1123598814738778200, 'user_type', '3', 'OTHER', 3, NULL, 0, 0), (1453241835131150337, 0, 'business_type', '-1', '业务类型', 15, '', 0, 0), (1455360138087034882, 0, 'meta_object_type', '-1', '业务对象', 16, '', 0, 1), (1456080689654984705, 0, 'domain_model_type', '-1', '领域模型类型', 16, '', 0, 0), (1456081395032059906, 1456080689654984705, 'domain_model_type', '100', '普通单据', 1, '', 0, 0), (1456081475520753666, 1456080689654984705, 'domain_model_type', '400', '基础资料', 3, '', 0, 0), (1456081603224727554, 1456080689654984705, 'domain_model_type', '300', '工作流', 2, '', 0, 0), (1456081832451829762, 1456080689654984705, 'domain_model_type', '2200', '日志单据', 15, '', 0, 0), (1456081989528514562, 1456080689654984705, 'domain_model_type', '600', '套打', 4, '', 0, 0), (1456082165236297729, 1456080689654984705, 'domain_model_type', '900', '账表', 5, '', 0, 0), (1456082255455776770, 1456080689654984705, 'domain_model_type', '1000', '电子表格', 6, '', 0, 0), (1456082330630287362, 1456080689654984705, 'domain_model_type', '2020', '报表函数', 7, '', 0, 0), (1456091305266442242, 0, 'code_rule_for_biz_objects', '-1', '编码规则业务', 17, '', 0, 0), (1456092508360601601, 1456091305266442242, 'code_rule_for_biz_objects', 'tpm', '维修保养', 1, '', 0, 0), (1528576927213764609, 1456092508360601601, 'code_rule_for_biz_objects', 'CheckRecord', '点检工单', 0, '', 0, 0), (1528577027004645378, 1456092508360601601, 'code_rule_for_biz_objects', 'MaintainPlan', '保养计划单', 0, '', 0, 0), (1528577066909253633, 1456092508360601601, 'code_rule_for_biz_objects', 'MaintainRecord', '保养工单', 0, '', 0, 0), (1528615251903139842, 1456092508360601601, 'code_rule_for_biz_objects', 'RepairApply', '维修申请单', 0, '', 0, 0), (1528615283528192002, 1456092508360601601, 'code_rule_for_biz_objects', 'RepairRecord', '维修工单', 0, '', 0, 0), (1529413062828400642, 1456091305266442242, 'code_rule_for_biz_objects', 'MDM', '主数据', 7, '', 0, 0), (1529413396703387650, 1529413062828400642, 'code_rule_for_biz_objects', 'ProductionCraftVersion', '产品工艺版本', 8, '', 0, 0), (1529413486159503361, 1529413062828400642, 'code_rule_for_biz_objects', 'BomVersion', 'BOM版本', 9, '', 0, 0), (1529641587120447490, 1529413062828400642, 'code_rule_for_biz_objects', 'Role', '角色', 0, '', 0, 0), (1529651764241698817, 1529413062828400642, 'code_rule_for_biz_objects', 'User', '用户', 0, '', 0, 0), (1531087267316621313, 1456091305266442242, 'code_rule_for_biz_objects', 'CoProduction', '计划工单', 3, '', 0, 0), (1533636537071742977, 1529413062828400642, 'code_rule_for_biz_objects', 'Employee', '员工', 14, '', 0, 0), (1533692798486503426, 1529413062828400642, 'code_rule_for_biz_objects', 'Workstation', '工位编码', 0, '', 0, 0), (1533701610014564354, 1529413062828400642, 'code_rule_for_biz_objects', 'Machine', '机器', 16, '', 0, 0), (1533704300484419585, 1529413062828400642, 'code_rule_for_biz_objects', 'Material', '物料', 17, '', 0, 0), (1533706574581522434, 1529413062828400642, 'code_rule_for_biz_objects', 'MaterialType', '物料类型', 18, '', 0, 0), (1533719439876861954, 1529413062828400642, 'code_rule_for_biz_objects', 'Tray', '托盘', 19, '', 0, 0), (1533731252522319874, 1529413062828400642, 'code_rule_for_biz_objects', 'Fixture', '夹具', 20, '', 0, 0), (1533735349128396802, 1529413062828400642, 'code_rule_for_biz_objects', 'Tool', '刀具', 21, '', 0, 0), (1534005849616928770, 1529413062828400642, 'code_rule_for_biz_objects', 'WarehouseStation', '库位', 0, '', 0, 0), (1534006153481670657, 1529413062828400642, 'code_rule_for_biz_objects', 'Process', '工序', 0, '', 0, 0), (1534006240236654594, 1529413062828400642, 'code_rule_for_biz_objects', 'Supplier', '供应商', 0, '', 0, 0), (1534008675822850050, 1529413062828400642, 'code_rule_for_biz_objects', 'Product', '产品', 0, '', 0, 0), (1534102471747162114, 1456091305266442242, 'code_rule_for_biz_objects', 'DNC', '生产工艺', 11, '', 0, 0), (1534415862712934401, 1534102471747162114, 'code_rule_for_biz_objects', 'File', '我的文档', 0, '', 0, 0), (1534416347763220481, 1534102471747162114, 'code_rule_for_biz_objects', 'FactoryFile', '工厂文件', 1, '', 0, 0), (1534416483348291585, 1534102471747162114, 'code_rule_for_biz_objects', 'WorkstationFile', '工位文件', 2, '', 0, 0), (1534724500945178625, 1534102471747162114, 'code_rule_for_biz_objects', 'CraftFile', '工艺文件', 0, '', 0, 0), (1457649968133238785, 0, 'element_type', '-1', '元素类型', 18, '', 0, 0), (1457650235587227649, 1457649968133238785, 'element_type', '1', '常量', 1, '', 0, 0), (1457650295590940674, 1457649968133238785, 'element_type', '2', '日期字段', 2, '', 0, 0), (1457650366038470658, 1457649968133238785, 'element_type', '3', '数值字段', 3, '', 0, 0), (1457650497924165633, 1457649968133238785, 'element_type', '4', '下拉列表', 4, '', 0, 0), (1457650684163846146, 1457649968133238785, 'element_type', '5', '关联业务', 5, '', 0, 0), (1457650741965549569, 1457649968133238785, 'element_type', '0', '流水号', 0, '', 0, 0), (1457650828531789825, 1457649968133238785, 'element_type', '6', '业务字段', 6, '', 0, 0), (1458039292423106561, 1457649968133238785, 'element_type', '7', '文本', 7, '', 0, 1), (1458668454544470017, 0, 'date_format', '-1', '日期格式', 19, '', 0, 0), (1458668672908324866, 1458668454544470017, 'date_format', 'yy', 'YY', 1, '', 0, 0), (1458668780311867394, 1458668454544470017, 'date_format', 'yyyy', 'YYYY', 2, '', 0, 0), (1458668871294709761, 1458668454544470017, 'date_format', 'yyMM', 'YYMM', 3, '', 0, 0), (1458668970691325953, 1458668454544470017, 'date_format', 'yyyyMM', 'YYYYMM', 4, '', 0, 0), (1458669059740594178, 1458668454544470017, 'date_format', 'yyMMdd', 'YYMMDD', 5, '', 0, 0), (1458669152107556865, 1458668454544470017, 'date_format', 'yyyyMMdd', 'YYYYMMDD', 6, '', 0, 0), (1458669884235902977, 0, 'caps_type', '-1', '大小写', 20, '', 0, 0), (1458670948511182850, 1458669884235902977, 'caps_type', 'U', '大写', 2, '', 0, 0), (1458671024897847297, 1458669884235902977, 'caps_type', 'L', '小写', 1, '', 0, 0), (1458730812968992770, 1268732353038168065, 'work_station_param_type', '6', '能耗', 7, '', 0, 0), (1460882877994348546, 0, 'user_status', '-1', '用户状态', 22, '', 0, 0), (1460882955710607361, 1460882877994348546, 'user_status', '1', '启用', 1, '', 0, 0), (1460882993065078786, 1460882877994348546, 'user_status', '2', '禁用', 2, '', 0, 0), (1469105566137647105, 1123598814738675211, 'menu_category', '0', 'APP', 0, '', 0, 0), (1469105667803381761, 1123598814738675211, 'menu_category', '3', '卡片', 3, '', 0, 0), (1473111864757952513, 0, 'workstation_param_type', '-1', '工位参数类型', 25, '', 0, 0), (1473112015589318658, 1473111864757952513, 'workstation_param_type', '0', '其他', 0, '', 0, 0), (1473112065329569793, 1473111864757952513, 'workstation_param_type', '1', '状态', 1, '', 0, 0), (1473112127799533569, 1473111864757952513, 'workstation_param_type', '2', '产量', 2, '', 0, 0), (1473112159697215489, 1473111864757952513, 'workstation_param_type', '3', '报警', 3, '', 0, 0), (1473112201778667522, 1473111864757952513, 'workstation_param_type', '4', '程序号', 4, '', 0, 0), (1473112246531891201, 1473111864757952513, 'workstation_param_type', '5', '脉冲产量', 5, '', 0, 0), (1473112281130704897, 1473111864757952513, 'workstation_param_type', '6', '报警号', 6, '', 0, 0), (1508358533405577217, 1473111864757952513, 'workstation_param_type', '7', '报警信息', 7, '', 0, 0), (1504356398494195713, 0, 'visual_time_level', '-1', '可视化数据源', 33, '', 0, 0), (1504356512872865710, 1504356398494195713, 'visual_time_level', '10', '10', 10, '', 0, 0), (1504356512872865711, 1504356398494195713, 'visual_time_level', '11', '11', 11, '', 0, 0), (1504356512872865712, 1504356398494195713, 'visual_time_level', '12', '12', 12, '', 0, 0), (1504356512872865713, 1504356398494195713, 'visual_time_level', '13', '13', 13, '', 0, 0), (1504356512872865714, 1504356398494195713, 'visual_time_level', '14', '14', 14, '', 0, 0), (1504356512872865715, 1504356398494195713, 'visual_time_level', '15', '15', 15, '', 0, 0), (1504356512872865716, 1504356398494195713, 'visual_time_level', '16', '16', 16, '', 0, 0), (1504356512872865717, 1504356398494195713, 'visual_time_level', '17', '17', 17, '', 0, 0), (1504356512872865718, 1504356398494195713, 'visual_time_level', '18', '18', 18, '', 0, 0), (1504356512872865719, 1504356398494195713, 'visual_time_level', '19', '19', 19, '', 0, 0), (1504356512872865720, 1504356398494195713, 'visual_time_level', '20', '20', 20, '', 0, 0), (1504356512872865721, 1504356398494195713, 'visual_time_level', '21', '21', 21, '', 0, 0), (1504356512872865722, 1504356398494195713, 'visual_time_level', '22', '22', 22, '', 0, 0), (1504356512872865723, 1504356398494195713, 'visual_time_level', '23', '23', 23, '', 0, 0), (1504356512872865724, 1504356398494195713, 'visual_time_level', '24', '24', 24, '', 0, 0), (1504356512872865725, 1504356398494195713, 'visual_time_level', '25', '25', 25, '', 0, 0), (1504356512872865726, 1504356398494195713, 'visual_time_level', '26', '26', 26, '', 0, 0), (1504356512872865727, 1504356398494195713, 'visual_time_level', '27', '27', 27, '', 0, 0), (1504356512872865728, 1504356398494195713, 'visual_time_level', '28', '28', 28, '', 0, 0), (1504356512872865729, 1504356398494195713, 'visual_time_level', '29', '29', 29, '', 0, 0), (1504356512872865730, 1504356398494195713, 'visual_time_level', '30', '30', 30, '', 0, 0), (1504356512872865788, 1504356398494195713, 'visual_time_level', '3', '3', 3, '', 0, 0), (1504356512872865792, 1504356398494195713, 'visual_time_level', '2', '2', 2, '', 0, 0), (1504356512872865793, 1504356398494195713, 'visual_time_level', '1', '1', 1, '', 0, 0), (1504356512872865794, 1504356398494195713, 'visual_time_level', '4', '4', 4, '', 0, 0), (1504356512872865795, 1504356398494195713, 'visual_time_level', '5', '5', 5, '', 0, 0), (1504356512872865796, 1504356398494195713, 'visual_time_level', '6', '6', 6, '', 0, 0), (1504356512872865797, 1504356398494195713, 'visual_time_level', '7', '7', 7, '', 0, 0), (1504356512872865798, 1504356398494195713, 'visual_time_level', '8', '8', 8, '', 0, 0), (1504356512872865799, 1504356398494195713, 'visual_time_level', '9', '9', 9, '', 0, 0), (1503617347718275074, 0, 'interface_url_type', '-1', '接口类型', 1, '', 0, 0), (1503617792750706689, 1503617347718275074, 'interface_url_type', '0', 'POST', 0, '', 0, 0), (1503617907406200833, 1503617347718275074, 'interface_url_type', '1', 'PUT', 1, '', 0, 0), (1503617937026375681, 1503617347718275074, 'interface_url_type', '2', 'GET', 2, '', 0, 0), (1503618350983208962, 0, 'interface_owning_chart', '-1', '图表类型', 1, '', 0, 0), (1503618504008196097, 1503618350983208962, 'interface_owning_chart', '1', '键值对', 1, '', 0, 0), (1503618598656860162, 1503618350983208962, 'interface_owning_chart', '2', '单图例', 2, '', 0, 0), (1503618647788937218, 1503618350983208962, 'interface_owning_chart', '3', '多图例', 3, '', 0, 0), (1503618916136312833, 1503618350983208962, 'interface_owning_chart', '4', '甘特图', 4, '', 0, 0), (1503618982435676161, 1503618350983208962, 'interface_owning_chart', '5', '数据表', 5, '', 0, 0), (1503619078288105473, 1503618350983208962, 'interface_owning_chart', '6', '地图', 6, '', 0, 0), (1503619192079572993, 1503618350983208962, 'interface_owning_chart', '7', '工位设备状态', 7, '', 0, 1647504210), (1503619406949572610, 0, 'interface_data_type', '-1', '数据类型', 1, '', 0, 0), (1503619700710236161, 1503619406949572610, 'interface_data_type', '0', '文本', 0, '', 0, 0), (1503619742451949570, 1503619406949572610, 'interface_data_type', '1', '数值', 1, '', 0, 0), (1503619775654060033, 1503619406949572610, 'interface_data_type', '2', '下拉', 2, '', 0, 0), (1503619816951177217, 1503619406949572610, 'interface_data_type', '3', '日期', 3, '', 0, 0), (1503619846021898241, 1503619406949572610, 'interface_data_type', '4', '树选择', 4, '', 0, 0), (1504421346301906945, 0, 'i18n_language', '-1', '语言标签', 1, '', 0, 0), (1504421499675021314, 1504421346301906945, 'i18n_language', 'zh-CN', '中文', 1, '', 0, 0), (1504421567979261954, 1504421346301906945, 'i18n_language', 'en-US', '英文', 2, '', 0, 0), (1519224510101229570, 0, 'flow_type', '-1', '流程类别', 34, '', 0, 0), (1519224790884716545, 1519224510101229570, 'flow_type', '1', '上线流程', 1, '', 0, 0), (1519224963119616001, 1519224510101229570, 'flow_type', '2', '途径流程', 2, '', 0, 0), (1519225018769641473, 1519224510101229570, 'flow_type', '3', '下线流程', 3, '', 0, 0), (1519225462610890753, 1519224510101229570, 'flow_type', '4', '可选流程', 4, '', 0, 0), (1519226109932593153, 0, 'work_type', '-1', '工种', 35, '', 0, 0), (1519227208232067073, 1519226109932593153, 'work_type', '0', '其他', 0, '', 0, 0), (1519227570020147201, 1519226109932593153, 'work_type', '7', '三坐标', 7, '', 0, 0), (1519227257976512514, 1519226109932593153, 'work_type', '1', '打标', 1, '', 0, 0), (1519227348531535873, 1519226109932593153, 'work_type', '2', '测量', 2, '', 0, 0), (1519227400394104834, 1519226109932593153, 'work_type', '3', '清洗', 3, '', 0, 0), (1519227447974289410, 1519226109932593153, 'work_type', '4', '装卸', 4, '', 0, 0), (1519227486498971650, 1519226109932593153, 'work_type', '5', '加工', 5, '', 0, 0), (1519227524977516545, 1519226109932593153, 'work_type', '6', '搬运', 6, '', 0, 0), (1539135424584069122, 0, 'beltline_type', '-1', '产线标签', 0, '', 0, 0), (1539135584143781890, 1539135424584069122, 'beltline_type', 'fms_beltline', '柔性产线', 0, '', 0, 0), (1539135670592581634, 1539135424584069122, 'beltline_type', 'beltline', '产线', 1, '', 0, 0), (1519228236956426241, 0, 'quality_maker_flow_id', '-1', '流程质量归属', 36, '', 0, 0), (1519858555539165186, 1519228236956426241, 'quality_maker_flow_id', '0', '空', 0, '', 0, 0), (1519228318732771330, 1519228236956426241, 'quality_maker_flow_id', '1', '当前流程', 1, '', 0, 0), (1519228450735906817, 1519228236956426241, 'quality_maker_flow_id', '2', '其他已建立流程', 2, '', 0, 0), (1519571624509648898, 0, 'machining_type', '-1', '加工属性', 37, '', 0, 0), (1519573149290147841, 1519571624509648898, 'machining_type', '0', '单主轴加工', 1, '', 0, 0), (1519573281259728898, 1519571624509648898, 'machining_type', '1', '双主轴加工', 2, '', 0, 0), (1526794760756858881, 0, 'notify-business-key', '-1', '业务通知', 0, '业务通知树结构', 0, 0), (1526794939694256129, 1526794760756858881, 'notify-business-key', 'business-main', '所有的', 0, '', 0, 0), (1546053532406841346, 0, 'fms_order_type', '-1', '工单类型', 101, '', 0, 0), (1546053659456503809, 1546053532406841346, 'fms_order_type', '1', '来料', 1, '', 0, 0), (1546053743283863554, 1546053532406841346, 'fms_order_type', '2', '生产', 2, '', 0, 0), (1546053867640782850, 0, 'fms_order_status', '-1', '工单状态', 102, '', 0, 0), (1546054001262919682, 1546053532406841346, 'fms_order_type', '0', '待发布', 0, '', 0, 1657442996), (1546054189654278145, 1546053867640782850, 'fms_order_status', '0', '待发布', 0, '', 0, 0), (1546059871459803137, 1546053867640782850, 'fms_order_status', '1', '待加工', 1, '', 0, 0), (1546059949159284738, 1546053867640782850, 'fms_order_status', '2', '加工中', 3, '', 0, 0), (1546060050544001025, 1546053867640782850, 'fms_order_status', '3', '暂停中', 4, '', 0, 0), (1546060104705048577, 1546053867640782850, 'fms_order_status', '4', '暂停', 5, '', 0, 0), (1546060156278210562, 1546053867640782850, 'fms_order_status', '5', '已完成', 6, '', 0, 0), (1546319809109098498, 1456091305266442242, 'code_rule_for_biz_objects', 'fms', '柔性线', 10, '', 0, 0), (1546319881871884290, 1546319809109098498, 'code_rule_for_biz_objects', 'FmsOrder', '工单', 0, '', 0, 0), (1549282455787839490, 0, 'work_order_priority', '-1', '工单优先级', 103, '', 0, 0), (1549282684230606850, 1549282455787839490, 'work_order_priority', '0', '0', 0, '', 0, 0), (1549282707655794690, 1549282455787839490, 'work_order_priority', '1', '1', 1, '', 0, 0), (1549282721601855490, 1549282455787839490, 'work_order_priority', '2', '2', 2, '', 0, 0), (1549282735992512513, 1549282455787839490, 'work_order_priority', '3', '3', 3, '', 0, 0), (1549282753109467138, 1549282455787839490, 'work_order_priority', '4', '4', 4, '', 0, 0), (1549282772747198465, 1549282455787839490, 'work_order_priority', '5', '5', 5, '', 0, 0), (1557237561910824962, 1557236734466920450, 'notify-business-key', 'maintenance-apply', '维修申请', 0, '', 0, 0), (1557237317307404290, 1557236734466920450, 'notify-business-key', 'maintain-overdue', '保养逾期', 0, '', 0, 0), (1557237158032904194, 1557236734466920450, 'notify-business-key', 'maintenance-warning', '保养计划预警', 0, '', 0, 0), (1557237025039912961, 1557236734466920450, 'notify-business-key', 'maintenance', '保养计划', 0, '', 0, 0), (1557236734466920450, 1526794939694256129, 'notify-business-key', 'tpm-maintain', 'TPM机器管理', 0, '', 0, 0), (1566741880742105089, 1456091305266442242, 'code_rule_for_biz_objects', '12', '刀具管理', 12, '', 0, 0), (1566741999197638657, 1566741880742105089, 'code_rule_for_biz_objects', 'ToolCategory', '刀具类型', 0, '', 0, 0), (1566748889462255617, 0, 'tool_use_state', '-1', '刀具使用状态', 104, '', 0, 0), (1566749152315092994, 1566748889462255617, 'tool_use_state', '0', '卸刀', 1, '', 0, 0), (1566749192735600642, 1566748889462255617, 'tool_use_state', '1', '装刀', 2, '', 0, 0), (1566749231721656322, 1566748889462255617, 'tool_use_state', '2', '新增', 3, '', 0, 0), (1566749421182562305, 0, 'fms_life_state', '-1', '刀具生命状态', 105, '', 0, 0), (1566749603290853377, 1566749421182562305, 'fms_life_state', '1', '正常', 1, '', 0, 0), (1566749634613915650, 1566749421182562305, 'fms_life_state', '2', '警告', 2, '', 0, 0), (1566749676129136641, 1566749421182562305, 'fms_life_state', '3', '报警', 3, '', 0, 0), (1568111286365032449, 1566741880742105089, 'code_rule_for_biz_objects', 'ToolManage', '刀具', 1, '', 0, 0), (1589881297169260545, 0, 'product_form', '-1', '产品形态', 1, '1:毛坯 2:加工中 3:成品 4:半成品 5:不合格品', 0, 0), (1589881691387699202, 1589881297169260545, 'product_form', '1', '#929292', 1, '毛坯', 0, 0), (1589881742470127618, 1589881297169260545, 'product_form', '2', '#BDA924', 2, '加工中', 0, 0), (1589882069957189633, 1589881297169260545, 'product_form', '3', '#0FC015', 3, '成品', 0, 0), (1589882275968819202, 1589881297169260545, 'product_form', '4', '#2B7ED2', 4, '半成品', 0, 0), (1589882338816270337, 1589881297169260545, 'product_form', '5', '#E64747', 5, '不合格品', 0, 0), (1592065873981915137, 0, 'dnc_splice_symbol', '-1', '文件目录拼接替换符号', 106, '', 0, 0), (1592066471280164865, 1592065873981915137, 'dnc_splice_symbol', ' ', '空格', 3, '', 0, 0), (1592066515408437250, 1592065873981915137, 'dnc_splice_symbol', '-', '-', 1, '', 0, 0), (1592066562644688898, 1592065873981915137, 'dnc_splice_symbol', '_', '_', 2, '', 0, 0), (1605136044340736002, 0, 'position_type', '-1', '位置类型', 108, '', 0, 0), (1605136134803484673, 1605136044340736002, 'position_type', '1', '库位', 1, '', 0, 0), (1605136172300562433, 1605136044340736002, 'position_type', '2', '设备', 2, '', 0, 0); INSERT INTO blade_role(id, tenant_id, parent_id, role_name, sort, role_alias, is_deleted) VALUES (1123598816738675201, '000000', 0, '超级管理员', 1, 'administrator', 0); INSERT INTO blade_user_dept(id, user_id, dept_id) VALUES (1478627372898951170, 1123598821738675201, 1123598813738675201); INSERT INTO blade_post(id, tenant_id, category, post_code, post_name, sort, remark, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1455406507120193538, '000000', 1, '001', '系统管理员', 1, '', 1123598821738675201, 1123598813738675201, NOW(), NULL, NULL, 1, 1); -- 组 INSERT INTO blade_common_group(id, tenant_id, parent_id, extend_id, code, group_type, group_category, group_tag, name, full_name, sort, remark, is_deleted, status, production_line_type) VALUES (1, '000000', 0, NULL, '00001', 'group_workstation', 1, NULL, '所有的', '工位默认组', 0, '', 0, 1, NULL), (2, '000000', 0, 'e9ea6606-ad98-4c72-a4d9-b8eeec95a632', '00001', 'group_machine', 1, NULL, '所有的', '机器默认组', 1, '机器根节点', 0, 1, NULL), (4, '000000', 0, NULL, '00001', 'group_fixture', 1, NULL, '所有的', '夹具组', 1, '夹具组根节点', 0, 1, NULL), (5, '000000', 0, NULL, '00001', 'group_tray', 1, NULL, '所有的', '托盘组', 1, '托盘组根节点', 0, 1, NULL), (6, '000000', 0, NULL, '00001', 'group_ng', 1, NULL, '所有的', '不良部位默认组', 1, '不良部位根节点', 0, 1, NULL), (101, '000000', 1, NULL, '00001.10001', 'group_workstation', 1, NULL, '默认', '工位默认组', 1, '工位默认组', 0, 1, NULL), (102, '000000', 2, '0a40b52d-d748-4187-87e6-2499bed55885', '00001.10001', 'group_machine', 1, NULL, '默认组', '机器默认组', 1, '机器默认组', 0, 1, NULL), (104, '000000', 4, NULL, '00001.10001', 'group_fixture', 1, NULL, '默认组', '夹具默认组', 1, '夹具默认组', 0, 1, NULL), (105, '000000', 5, NULL, '00001.10001', 'group_tray', 1, NULL, '默认组', '托盘默认组', 1, '托盘默认组', 0, 1, NULL), (106, '000000', 6, NULL, '00001.10001', 'group_ng', 1, NULL, '默认组', '不良部位默认组', 1, '不良部位默认组', 0, 1, NULL); -- 业务对象 INSERT INTO blade_meta_object_type (f_id, name, model_type_id, subsys_id, table_name, ref_code, ref_name, primary_key, rule_field, rule_dict_code, code) VALUES ('CheckRecord', '点检工单', null, 'tpm', 'blade_production_plan', 'id', 'plan_code', 'id', null, null, null), ('Employee', '员工', null, 'MDM', 'blade_employee', 'code', 'name', 'id', null, null, null), ('FactoryFile', '工厂文件', null, 'DNC', 'blade_dnc_factory_file', 'content_md5', 'content_type', 'id', null, null, null), ('File', '我的文档', null, 'DNC', 'blade_dnc_craft_file', 'content_md5', 'content_type', 'id', null, null, null), ('Fixture', '夹具', null, 'MDM', 'blade_fixture', 'code', 'name', 'id', null, null, null), ('Machine', '机器', null, 'MDM', 'blade_machine', 'machine_code', 'machine_name', 'id', null, null, null), ('MaintainPlan', '保养计划单', null, 'tpm', 'blade_maintain_plan', 'code', 'device_code', 'id', null, null, null), ('MaintainRecord', '保养工单', null, 'tpm', 'blade_maintain_plan_item', 'create_dept', 'create_user', 'id', null, null, null), ('Material', '物料', null, 'MDM', 'blade_material', 'code', 'name', 'id', null, null, null), ('MaterialType', '物料类型', null, 'MDM', 'blade_material_type', 'code', 'name', 'id', null, null, null), ('Process', '工序', null, 'MDM', 'blade_process', 'code', 'name', 'id', null, null, null), ('Product', '产品', null, 'MDM', 'blade_product', 'code', 'name', 'id', null, null, null), ('ProductionCraftVersion', '工艺版本', null, 'MDM', 'blade_production_craft_version', 'name', 'description', 'id', null, null, null), ('RepairApply', '维修申请单', null, 'tpm', 'blade_repair_apply', 'create_time', 'update_user', 'id', null, null, null), ('RepairRecord', '维修工单', null, 'tpm', 'blade_repair_record', 'create_time', 'create_user', 'id', null, null, null), ('Role', '角色', null, 'MDM', 'blade_role', 'role_name', 'role_alias', 'id', null, null, null), ('Supplier', '供应商', null, 'MDM', 'blade_supplier', 'code', 'name', 'id', null, null, null), ('Tool', '刀具', null, 'MDM', 'blade_tool', 'code', 'name', 'id', null, null, null), ('Tray', '托盘', null, 'MDM', 'blade_tray', 'code', 'name', 'id', null, null, null), ('User', '用户', null, 'MDM', 'blade_user', 'account', 'avatar', 'id', null, null, null), ('WarehouseStation', '库位', null, 'MDM', 'blade_warehouse_station', 'warehouse_code', 'warehouse_name', 'id', null, null, null), ('WorkstationFile', '工位文件', null, 'DNC', 'blade_dnc_transfer_directory_file', 'id', 'create_dept', 'id', null, null, null), ('FmsOrder', '工单', NULL, 'fms', 'blade_fms_order', 'code', 'order_code', 'id', NULL, NULL, null), ('ToolManage', '刀具', NULL, '12', 'blade_tool', 'id', 'tool_category_id', 'id', 'tool_category', 'ToolCategory', NULL); INSERT INTO blade_meta_object_type_field (id, object_id, f_code, f_name, field, element_type, enum_type, seq) VALUES (1530074625104351234, 'User', 'role_id', 'roleId', 'roleId', '5', null, 0), (1531180326104588289, 'CheckRecord', 'plan_code', '计划编号', 'planCode', '6', null, 0), (1531181021637632002, 'Plan', 'plan_code', '计划编号', 'planCode', '6', null, 1), (1532168973593858050, 'User', 'avatar', '123', 'roleId', '6', null, 0), (1533694592792977409, 'Workstation', 'type', '工位类型', 'type', '4', 'workstation_type', 3), (1533694592801366018, 'Workstation', 'calendar_code', '生产日历', 'calendarCode', '6', null, 2), (1533694592809754625, 'Workstation', 'name', '名称', 'name', '6', null, 1), (1533699561839452161, 'Role', 'role_name', '角色1', 'roleName', '6', null, 0), (1533702112366354433, 'User', 'sex', 'sex', 'sex', '4', 'sex', 0), (1533706991927353346, 'Material', 'property', '物料属性', 'property', '4', 'material_property', 0), (1533706991935741954, 'Material', 'type_id', '物料类型', 'typeId', '5', null, 0), (1534100428739432449, 'User', 'code', 'path', 'path', '6', null, 0), (1534100428747821058, 'User', 'birthday', 'hash', 'hash', '6', null, 0), (1534417474084839426, 'File', 'display_name', '文件名称', 'name', '6', null, 1), (1534417474093228034, 'File', 'pid', '文件夹id', 'targetId', '6', null, 0), (1534486245301620738, 'FactoryFile', 'filename', '文件名称', 'filename', '6', null, 0), (1534703443274174466, 'WorkstationFile', 'file_type', '文件类型', 'fileType', '6', null, 3), (1534703443282563073, 'WorkstationFile', 'storage_space_id', '固定目录id', 'storageSpaceId', '6', null, 2), (1534703443290951681, 'WorkstationFile', 'filename', '文件名称', 'filename', '6', null, 1), (1534703443303534593, 'WorkstationFile', 'transfer_directory_id', '工位目录id', 'transferDirectoryId', '6', null, 0), (1534781249825144833, 'MaintainRecord', 'create_time', '创建时间', 'createTime', '2', null, 0), (1534781431706943489, 'MaintainPlan', 'create_time', '创建时间', 'createTime', '2', null, 0), (1534781609960669186, 'RepairRecord', 'create_time', '创建时间', 'createTime', '2', null, 0), (1534781954749235202, 'CheckRecord', 'create_time', '创建时间', 'createTime', '2', null, 0), (1534783932418097154, 'RepairApply', 'create_time', '创建时间', 'createTime', '2', null, 0), (1546320261095686146, 'FmsOrder', 'create_time', '创建时间', 'createTime', '2', NULL, 0), (1568151148038254594, 'ToolManage', 'tool_category', '刀具类型', 'toolCategory', '4', 'ToolCategory', 0), (1569491724139143170, 'ToolManage', 'tool_model_id', '刀具型号', 'toolModelId', '6', NULL, 1); INSERT INTO blade_meta_ref_object_type (object_type_id, ref_object_type_id, field_name, id) VALUES ('Material', 'MaterialType', 'type_id', 1533706991952519169), ('User', 'Role', 'role_id', 1530074625368592386); INSERT INTO blade_bas_coderule (id, name, remark, bill_form_id, system_default, auto_billno, repair_billno, const_length, create_user, create_dept, create_time, update_user, update_time, status, is_deleted, rule_field_dict_key, preview) VALUES (1526409028868993025, 'code1', 'code1', 'Code', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-05-17 11:47:26', 1123598821738675201, '2022-05-17 11:47:26', 1, 0, null, null), (1533642000286920705, '员工', '默认编码规则', 'Employee', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-06-06 10:48:41', 1123598821738675201, '2022-06-08 17:51:01', 1, 0, null, 'E001'), (1533696936960122881, '工位编码', '默认编码规则', 'Workstation', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-06-06 14:26:59', 1123598821738675201, '2022-06-06 14:27:07', 1, 0, null, 'GW000103'), (1533703914314850305, '机器', '默认编码规则', 'Machine', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-06-06 14:54:43', 1123598821738675201, '2022-06-08 17:47:11', 1, 0, null, 'M001'), (1533707815227285506, '物料', '默认编码规则', 'Material', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-06-06 15:10:13', 1123598821738675201, '2022-06-09 13:14:25', 1, 0, null, ' 3- XXX-000001'), (1533723240834838530, '托盘', '默认编码规则', 'Tray', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-06-06 16:11:30', 1123598821738675201, '2022-06-08 14:08:44', 1, 0, null, 'TP000001'), (1533731872021020674, '夹具', '默认编码规则', 'Fixture', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-06-06 16:45:48', 1123598821738675201, '2022-06-08 17:46:58', 1, 0, null, 'JJ000001'), (1533735697876385793, '刀具', '默认编码规则', 'Tool', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-06-06 17:01:00', 1123598821738675201, '2022-06-08 17:46:41', 1, 0, null, 'DJ000001'), (1534007861003800577, '库位编码', '默认编码规则', 'WarehouseStation', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-06-07 11:02:29', 1123598821738675201, '2022-06-09 10:56:47', 1, 0, null, 'KW000001'), (1534008133264461826, '供应商编码', '默认编码规则', 'Supplier', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-06-07 11:03:34', 1123598821738675201, '2022-06-08 17:44:58', 1, 0, null, 'GYS000001'), (1534008367600226305, '工序', '默认编码规则', 'Process', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-06-07 11:04:30', 1123598821738675201, '2022-06-07 11:22:30', 1, 0, null, 'GX000001'), (1534008943171981313, '产品', '默认编码规则', 'Product', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-06-07 11:06:47', 1123598821738675201, '2022-06-08 17:43:15', 1, 0, null, 'CP000001'), (1534417965648879617, '我的文档文件版本', '默认编码规则', 'File', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-06-08 14:12:06', 1123598821738675201, '2022-06-09 10:34:45', 1, 0, null, '1.0'), (1534486578769760257, '工厂文件版本', '默认编码规则', 'FactoryFile', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-06-08 18:44:44', 1123598821738675201, '2022-06-09 09:30:20', 1, 0, null, ' 1.0'), (1534701473272500226, '工位文件版本', '默认编码规则', 'WorkstationFile', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-06-09 08:58:39', 1123598821738675201, '2022-06-09 10:16:58', 1, 0, null, ' 1.0'), (1534732968527728642, '工艺版本', '默认编码规则', 'ProductionCraftVersion', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-06-09 11:03:48', 1123598821738675201, '2022-06-09 11:03:55', 1, 0, null, 'V001'), (1534785801945219074, '保养工单', '默认编码规则', 'MaintainRecord', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-06-09 14:33:45', 1123598821738675201, '2022-06-09 14:33:54', 1, 0, null, 'BYGD20220609001'), (1534786403743956993, '保养计划', '默认编码规则', 'MaintainPlan', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-06-09 14:36:08', 1123598821738675201, '2022-06-09 14:40:57', 1, 0, null, 'BYJH20220609001'), (1534786796305645569, '点检', '默认编码规则', 'CheckRecord', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-06-09 14:37:42', 1123598821738675201, '2022-06-09 14:41:01', 1, 0, null, 'DJ20220609001'), (1534787194743554049, '维修', '默认编码规则', 'RepairRecord', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-06-09 14:39:17', 1123598821738675201, '2022-06-09 14:40:53', 1, 0, null, 'WXGD20220609001'), (1534787576500715521, '维修申请', '默认编码规则', 'RepairApply', 1, 0, 0, null, 1123598821738675201, 1123598813738675201, '2022-06-09 14:40:48', 1123598821738675201, '2022-06-09 14:40:55', 1, 0, null, 'WXSQ20220609001'), (1546320742635339778, '工单编码', '工单编码', 'FmsOrder', 1, 0, 0, NULL, 1123598821738675201, 1123598813738675201, '2022-07-11 10:29:29', 1123598821738675201, '2022-07-11 10:29:33', 1, 0, NULL, 'WO2022071100001'); INSERT INTO blade_bas_coderule_entry (id, rule_id, seq, element_type, element_source, source_property, length, format, element_value, seed, increment_step, separator_char, re_char, add_char, cut_style, add_style, code_only_by, code_element) VALUES (1526409029439418369, 1526409028868993025, 1, 0, '', null, 3, '', '', 1, 1, '', '', '', 1, 0, 0, 1), (1526409029439418370, 1526409028868993025, 2, 1, '', null, 3, '', 'AVC', 1, 1, '', '', '', 1, 0, 0, 1), (1533642000316280834, 1533642000286920705, 1, 1, '', null, 1, '', 'E', 1, 1, '', '', '', 1, 0, 0, 1), (1533642000316280835, 1533642000286920705, 2, 0, '', null, 3, '', '', 1, 1, '', '', '0', 1, 0, 0, 1), (1533696937023037442, 1533696936960122881, 1, 1, '', null, 2, '', 'GW', 1, 1, '', '', '', 1, 0, 0, 1), (1533696937027231745, 1533696936960122881, 2, 0, '', null, 4, '', '', 1, 1, '', '', '0', 1, 0, 0, 1), (1533696937027231746, 1533696936960122881, 3, 4, 'type', 0, 2, '', '', 1, 1, '', '', '0', 1, 0, 0, 1), (1533703914335821825, 1533703914314850305, 1, 1, '', null, 1, '', 'M', 1, 1, '', '', '', 1, 0, 0, 1), (1533703914344210433, 1533703914314850305, 2, 0, '', null, 3, '', '', 1, 1, '', '', '0', 1, 0, 0, 1), (1533707815248257025, 1533707815227285506, 1, 4, 'property', 1, 5, '', '', 1, 1, '-', '', '', 1, 0, 0, 1), (1533707815252451329, 1533707815227285506, 2, 5, 'type_id', 1, 5, '', '', 1, 1, '-', '', '', 1, 0, 0, 1), (1533707815252451330, 1533707815227285506, 3, 0, '', null, 6, '', '', 1, 1, '', '', '0', 1, 0, 0, 1), (1533723240851615745, 1533723240834838530, 1, 1, '', null, 2, '', 'TP', 1, 1, '', '', '', 1, 0, 0, 1), (1533723240855810049, 1533723240834838530, 2, 0, '', null, 6, '', '', 1, 1, '', '', '0', 1, 0, 0, 1), (1533731872058769410, 1533731872021020674, 1, 1, '', null, 2, '', 'JJ', 1, 1, '', '', '', 1, 0, 0, 1), (1533731872062963713, 1533731872021020674, 2, 0, '', null, 6, '', '', 1, 1, '', '', '0', 1, 0, 0, 1), (1533735697888968706, 1533735697876385793, 1, 1, '', null, 2, '', 'DJ', 1, 1, '', '', '', 1, 0, 0, 1), (1533735697893163010, 1533735697876385793, 2, 0, '', null, 6, '', '', 1, 1, '', '', '0', 1, 0, 0, 1), (1534007861037355010, 1534007861003800577, 1, 1, '', null, 0, '', 'KW', 1, 1, '', '', '', 1, 0, 0, 1), (1534007861037355011, 1534007861003800577, 2, 0, '', null, 6, '', '', 1, 1, '', '', '0', 1, 0, 0, 1), (1534008133285433345, 1534008133264461826, 1, 1, '', null, 0, '', 'GYS', 1, 1, '', '', '', 1, 0, 0, 1), (1534008133285433346, 1534008133264461826, 2, 0, '', null, 6, '', '', 1, 1, '', '', '0', 1, 0, 0, 1), (1534008367621197826, 1534008367600226305, 1, 1, '', null, 0, '', 'GX', 1, 1, '', '', '', 1, 0, 0, 1), (1534008367625392129, 1534008367600226305, 2, 0, '', null, 6, '', '', 1, 1, '', '', '0', 1, 0, 0, 1), (1534008943188758530, 1534008943171981313, 1, 1, '', null, 0, '', 'CP', 1, 1, '', '', '', 1, 0, 0, 1), (1534008943192952834, 1534008943171981313, 2, 0, '', null, 6, '', '', 1, 1, '', '', '0', 1, 0, 0, 1), (1534106862617219073, 1534106862600441857, 1, 6, 'content_md5', null, 0, '', '', 1, 1, '', '', '', 0, 0, 0, 0), (1534106862621413377, 1534106862600441857, 2, 6, 'transfer_directory_id', null, 0, '', '', 1, 1, '', '', '', 0, 0, 0, 0), (1534106862621413378, 1534106862600441857, 3, 0, '', null, 1, '', '', 1, 1, '', '', '', 0, 1, 0, 1), (1534106862621413379, 1534106862600441857, 4, 1, '', null, 2, '', '.0', 1, 1, '', '', '', 1, 0, 0, 1), (1534408791963639810, 1534408791934279682, 1, 6, 'filename', null, 0, '', '', 1, 1, '', '', '', 0, 0, 1, 0), (1534408791967834113, 1534408791934279682, 2, 6, 'pid', null, 0, '', '', 1, 1, '', '', '', 0, 0, 1, 0), (1534408791967834114, 1534408791934279682, 3, 0, '', null, 1, '', '', 1, 1, '', '', '', 1, 0, 0, 1), (1534408791967834115, 1534408791934279682, 4, 1, '', null, 2, '', '.0', 1, 1, '', '', '', 1, 0, 0, 1), (1534417965661462529, 1534417965648879617, 1, 6, 'pid', null, 0, '', '', 1, 1, '', '', '', 0, 0, 1, 0), (1534417965665656833, 1534417965648879617, 2, 6, 'display_name', null, 0, '', '', 1, 1, '', '', '', 0, 0, 1, 0), (1534417965665656834, 1534417965648879617, 3, 0, '', null, 1, '', '', 1, 1, '', '', '', 1, 0, 0, 1), (1534417965665656835, 1534417965648879617, 4, 1, '', null, 2, '', '.0', 1, 1, '', '', '', 1, 0, 0, 1), (1534486578820091905, 1534486578769760257, 1, 6, 'filename', null, 0, '', '', 1, 1, '', '', '', 0, 0, 1, 0), (1534486578820091906, 1534486578769760257, 2, 0, '', null, 3, '', '', 1, 1, '', '', '', 0, 0, 0, 1), (1534486578820091907, 1534486578769760257, 3, 1, '', null, 2, '', '.0', 1, 1, '', '', '', 0, 0, 0, 1), (1534701473285083137, 1534701473272500226, 1, 6, 'transfer_directory_id', null, 0, '', '', 1, 1, '', '', '', 0, 0, 1, 0), (1534701473289277441, 1534701473272500226, 2, 6, 'storage_space_id', null, 0, '', '', 1, 1, '', '', '', 0, 0, 1, 0), (1534701473289277442, 1534701473272500226, 3, 6, 'filename', null, 0, '', '', 1, 1, '', '', '', 0, 0, 1, 0), (1534703585364611073, 1534701473272500226, 4, 6, 'file_type', null, 0, '', '', 1, 1, '', '', '', 0, 0, 1, 0), (1534709410279788545, 1534701473272500226, 5, 0, '', null, 3, '', '', 1, 1, '', '', '', 0, 0, 0, 1), (1534709410279788546, 1534701473272500226, 6, 1, '', null, 2, '', '.0', 1, 1, '', '', '', 0, 0, 0, 1), (1534732968540311554, 1534732968527728642, 1, 1, '', null, 1, '', 'V', 1, 1, '', '', '', 0, 0, 0, 1), (1534732968540311555, 1534732968527728642, 2, 0, '', null, 3, '', '', 1, 1, '', '', '0', 1, 0, 0, 1), (1534785801974579201, 1534785801945219074, 1, 1, '', null, 4, '', 'BYGD', 1, 1, '', '', '', 0, 0, 0, 1), (1534785801978773505, 1534785801945219074, 2, 2, 'create_time', null, 8, 'yyyyMMdd', '', 1, 1, '', '', '', 0, 0, 1, 1), (1534785801982967810, 1534785801945219074, 3, 0, '', null, 3, '', '', 1, 1, '', '', '0', 0, 0, 0, 1), (1534786403760734210, 1534786403743956993, 1, 1, '', null, 4, '', 'BYJH', 1, 1, '', '', '', 0, 0, 0, 1), (1534786403764928514, 1534786403743956993, 2, 2, 'create_time', null, 8, 'yyyyMMdd', '', 1, 1, '', '', '', 0, 0, 1, 1), (1534786403764928515, 1534786403743956993, 3, 0, '', null, 3, '', '', 1, 1, '', '', '0', 0, 0, 0, 1), (1534786796322422785, 1534786796305645569, 1, 1, '', null, 2, '', 'DJ', 1, 1, '', '', '', 0, 0, 0, 1), (1534786796326617090, 1534786796305645569, 2, 2, 'create_time', null, 8, 'yyyyMMdd', '', 1, 1, '', '', '', 0, 0, 1, 1), (1534786796326617091, 1534786796305645569, 3, 0, '', null, 3, '', '', 1, 1, '', '', '0', 0, 0, 0, 1), (1534787194760331265, 1534787194743554049, 1, 1, '', null, 4, '', 'WXGD', 1, 1, '', '', '', 0, 0, 0, 1), (1534787194760331266, 1534787194743554049, 2, 2, 'create_time', null, 8, 'yyyyMMdd', '', 1, 1, '', '', '', 0, 0, 1, 1), (1534787194764525569, 1534787194743554049, 3, 0, '', null, 3, '', '', 1, 1, '', '', '0', 0, 0, 0, 1), (1534787576521687041, 1534787576500715521, 1, 1, '', null, 4, '', 'WXSQ', 1, 1, '', '', '', 0, 0, 0, 1), (1534787576525881345, 1534787576500715521, 2, 2, 'create_time', null, 8, 'yyyyMMdd', '', 1, 1, '', '', '', 0, 0, 1, 1), (1534787576525881346, 1534787576500715521, 3, 0, '', null, 3, '', '', 1, 1, '', '', '0', 0, 0, 0, 1), (1546320742668894209, 1546320742635339778, 1, 1, '', NULL, 2, '', 'WO', 1, 1, '', '', '', 1, 0, 0, 1), (1546320742668894210, 1546320742635339778, 2, 2, 'create_time', NULL, 8, 'yyyyMMdd', '', 1, 1, '', '', '', 1, 0, 0, 1), (1546320742668894211, 1546320742635339778, 3, 0, '', NULL, 5, '', '', 1, 1, '', '', '0', 1, 0, 0, 1); -- 参数表 INSERT INTO blade_param(id, param_name, param_key, param_value, remark, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1123598819738675201, '是否开启注册功能', 'account.registerUser', 'true', '开启注册', 1123598821738675201, 1123598813738675201, '2018-12-28 12:19:01', 1123598821738675201, '2018-12-28 12:19:01', 1, 0), (1123598819738675202, '用户管理-账号初始密码', 'account.initPassword', '123456', '创建用户和重置密码的时候用户的密码', 1123598821738675201, 1123598813738675201, '2018-12-28 12:19:01', 1123598821738675201, '2021-11-17 10:05:31', 1, 0), (1123598819738675203, '用户管理-初始密码修改策略', 'account.initPasswordModify', '0', '0:初始密码修改策略关闭,没有任何提示;1:提醒用户,如果未修改初始密码,则在登录时和点击菜单就会提醒修改密码对话框;2:强制实行初始密码修改,登录后若不修改密码则不能进行系统操作', 1123598821738675201, 1123598813738675201, '2019-12-28 12:19:01', 1123598821738675201, '2021-11-16 20:39:19', 1, 0), (1123598819738675204, '用户管理-账号密码修改策略验证周期', 'account.passwordModifyCycle', '30', '密码安全修改周期是指定时间内提醒或必须修改密码(例如设置30天)的验证时间(天),超过这个时间登录系统时需,提醒用户修改密码或强制修改密码才能继续使用系统。单位:天,如果设置30天,则第31天开始强制修改密码', 1123598821738675201, 1123598813738675201, '2019-12-26 09:57:30', 1478197625885212673, '2022-02-09 13:40:53', 1, 0), (1123598819738675205, '用户管理-账号密码修改策略', 'account.passwordModify', '2', '0:密码修改策略关闭,没有任何提示;1:提醒用户,如果XX天后未修改密码,则在登录时和点击菜单就会提醒修改密码对话框;2:强制实行密码修改,登录后若不修改密码则不能进行系统操作。', 1123598821738675201, 1123598813738675201, '2019-12-27 09:57:30', 1123598821738675201, '2021-11-16 20:39:25', 1, 0), (1123598819738675206, '用户管理-账号密码修改最低安全等级', 'account.passwordModifySecurityLevel', '0', '0:不限制等级(用户在修改密码的时候不进行等级验证)\n;1:限制最低等级为很弱\n;2:限制最低等级为弱\n;3:限制最低等级为安全\n;4:限制最低等级为很安全', 1123598821738675201, 1123598813738675201, '2019-12-28 09:57:30', 1123598821738675201, '2021-11-16 21:26:55', 1, 0), (1123598819738675207, '用户管理-账号密码修改长度自定义 ', 'account.passwordModifyLength', '{5,20}', '', 1123598821738675201, 1123598813738675201, '2021-10-27 10:13:15', 1123598821738675201, '2021-11-17 10:05:20', 1, 0), (1123598819738675208, '租户默认管理密码', 'tenant.default.password', 'admin', '', 1123598821738675201, 1123598813738675201, '2020-03-14 13:58:43', 1123598821738675201, '2021-11-17 10:05:26', 1, 0), (1238706160295559170, '租户默认账号额度', 'tenant.default.accountNumber', '100', NULL, 1123598821738675201, 1123598813738675201, '2020-03-14 13:58:57', 1123598821738675201, '2020-03-14 13:58:57', 1, 0), (1238706330076790786, '租户默认菜单集合', 'tenant.default.menuCode', 'desk,flow,work,monitor,resource,role,user,dept,post,dictbiz,topmenu', NULL, 1123598821738675201, 1123598813738675201, '2020-03-14 13:59:38', 1123598821738675201, '2020-03-14 13:59:38', 1, 0), (1460539420404936705, 'gg', 'gg', 'gg', '灌灌灌灌', 1123598821738675201, 1123598813738675201, '2021-11-16 17:25:08', 1123598821738675201, '2021-11-16 17:25:29', 1, 1), (1469133359414476801, '闲置登出', 'system.autolocktime', '900000', '', 1123598821738675201, 1123598813738675201, '2021-12-10 10:34:23', 1123598821738675201, '2021-12-10 10:34:23', 1, 0), (1471352737347571714, '账号登陆可允许的失败次数', 'account.failCount', '5', '', 1123598821738675201, 1123598813738675201, '2021-12-16 13:33:24', 1123598821738675201, '2021-12-16 13:33:24', 1, 0), (1486219808628973570, '加工程序类型', 'dnc.support.file.suffix.list', '无后缀,.MPF,.SPF,.TAP,.TXT,.PDF,.JSON,.JPG,.XLSX,.BAT,.mpf,.spf,.tap,.txt,.pdf,.json,.jpg,.xlsx,.bat,.key,.uuu,.txt1,.NC', 'dnc加工程序文件类型', 1123598821738675201, 1123598813738675201, '2022-01-26 14:09:50', 1123598821738675201, '2022-03-12 14:07:26', 1, 0), (1506151337267154945, '机床设备是否支持多台写入', 'dnc.enable.multifile.direct.write', 'false', '默认false', 1123598821738675201, 1123598813738675201, '2022-03-22 14:10:36', 1123598821738675201, '2022-03-22 14:11:52', 1, 0), (1526090710583537665, '主题类型', 'system.theme', '0', '0:为默认的主题,1:为深海蓝', NULL, NULL, NULL, NULL, NULL, 1, 0), (1564490176231051265, '员工管理-第三方同步默认pin码', 'employee.default.pin', '123456', '开启第三方通讯录同步时默认的员工pin码,只能为数字', 1123598821738675201, 1123598813738675201, '2022-08-30 13:48:19', 1123598821738675201, '2022-08-30 13:48:19', 1, 0), (1561649471570362369, '装卸站等待时长', 'loading.station.waiting.time', '5', '', 1123598821738675201, 1123598813738675201, '2022-08-22 17:40:23', 1123598821738675201, '2022-08-22 17:46:11', 1, 0), (1592024260398731266, 'DNC文件名称信息扩展设置', 'dnc.file.extraSetting', '{"connectors":"_","extraSource":1,"handleRegexp":"\\\\pP|\\\\pS|\\\\s+","selectProperty":2,"suffix":false}', '{"bagSplicingContent":2,"dirSplicingContent":-1,"sourceOfSplicing":1,"spliceSymbol":"_","splicingMethod":1}', 1123598821738675201, 1123598813738675201, '2022-11-14 13:18:57', 1123598821738675201, '2022-11-15 19:08:33', 1, 0), (1592024401662889985, 'DNC文件名称特殊符号处理表达式', 'dnc.file.filter', '\\\\pP|\\\\pS|\\\\s+', '', 1123598821738675201, 1123598813738675201, '2022-11-14 13:19:30', 1123598821738675201, '2022-11-14 13:19:30', 1, 0), (1592024401662889986, '是否开启', 'dnc.file.enableExtra', 'false', '开启文件传输名称设定', NULL, NULL, '2022-08-30 10:33:32', 1123598821738675201, '2022-11-15 19:30:29', 1, 0), (1608278947349045250, '班次最大上限个数', 'system.shift.max', '2', '班次最大上限个数', 1123598821738675201, 1123598813738675201, '2022-12-29 09:49:16', 1123598821738675201, '2022-12-30 09:07:49', 1, 0); INSERT INTO blade_global_wcs(code, name, type, effect, priority, remark, color) VALUES ('2', '运行', 1, 1, 1, NULL, '#73D13D'), ('3', '待机', 1, 1, 1, NULL, '#FFC53D'), ('5', '调试', 1, 1, 1, NULL, '#40A9FF'), ('1', '报警', 1, 1, 1, NULL, '#FF4D4F'), ('4', '离线', 1, 1, 1, NULL, '#595959'); INSERT INTO blade_global_wcs_of_rps(code, precondition, rps, remark, is_plan) VALUES ('2', NULL, 1, NULL, 0), ('001', 200, 1, NULL, NULL), ('3', NULL, 2, NULL, 1), ('5', NULL, 3, NULL, 1), ('1', NULL, 4, NULL, 1), ('004', 500, 4, NULL, NULL), ('004', 400, 5, NULL, NULL), ('999', NULL, 4, NULL, 1), ('005', NULL, 6, NULL, NULL), ('005', 500, 6, NULL, NULL), ('005', 400, 6, NULL, NULL), ('4', NULL, 5, NULL, 1); INSERT INTO blade_visual_comp_type(id, name, type, parent_id, icon, status, order_num, is_deleted, create_user, create_dept, create_time, update_user, update_time) VALUES (1518807897627492354, '图表', 'chart', 0, 'iconfont iconicon_message', 1, 2, 0, NULL, NULL, '2022-04-26 12:23:16', NULL, '2022-04-26 12:23:16'), (1518807898017562626, '柱形图', 'bar', 1518807897627492354, NULL, 1, 1, 0, NULL, NULL, '2022-04-26 12:23:16', 1123598821738675201, '2022-05-31 15:53:40'), (1518807898478936065, '折线图', 'line', 1518807897627492354, NULL, 1, 2, 0, NULL, NULL, '2022-04-26 12:23:16', 1123598821738675201, '2022-05-31 15:53:27'), (1518807899384905730, '饼图', 'pie', 1518807897627492354, NULL, 1, 3, 0, NULL, NULL, '2022-04-26 12:23:16', 1123598821738675201, '2022-05-31 15:53:17'), (1518807902287364097, '仪表盘', 'dashboard', 1518807897627492354, '', 1, 4, 0, NULL, NULL, '2022-04-26 12:23:17', 1123598821738675201, '2022-05-31 15:53:52'), (1518807915021271041, '信息', 'info', 0, '', 1, 34, 0, NULL, NULL, '2022-04-26 12:23:20', NULL, '2022-04-26 12:23:20'), (1518807915541364738, '文本', 'text', 1518807915021271041, '', 1, 35, 0, NULL, NULL, '2022-04-26 12:23:20', 1123598821738675201, '2022-04-27 16:14:05'), (1518807921094623233, '边框', 'border', 1531802529423138818, '', 1, 44, 0, NULL, NULL, '2022-04-26 12:23:21', 1123598821738675201, '2022-06-01 09:03:30'), (1518807921824432129, '装饰', 'decorate', 1531802529423138818, '', 1, 45, 0, NULL, NULL, '2022-04-26 12:23:21', 1123598821738675201, '2022-06-01 09:02:15'), (1518807926647881730, '设备', 'devices', 0, '', 1, 54, 0, NULL, NULL, '2022-04-26 12:23:22', 1123598821738675201, '2022-04-27 16:20:20'), (1519230031388160002, '设备', 'device', 1518807926647881730, 'iconfont iconicon_phone', 1, 0, 0, 1123598821738675201, 1123598813738675201, '2022-04-27 16:20:40', 1123598821738675201, '2022-04-27 16:20:40'), (1519250981332660226, '其他', 'chart_other', 1518807897627492354, '', 1, 120, 0, 1123598821738675201, 1123598813738675201, '2022-04-27 17:43:55', 1123598821738675201, '2022-05-31 15:53:58'), (1519251132059168769, '其他', 'info_others', 1518807915021271041, '', 1, 99, 0, 1123598821738675201, 1123598813738675201, '2022-04-27 17:44:31', 1123598821738675201, '2022-05-31 15:55:17'), (1519251313542508545, '其他', 'others', 0, '', 1, 99, 0, 1123598821738675201, 1123598813738675201, '2022-04-27 17:45:14', 1123598821738675201, '2022-06-01 08:54:21'), (1519251436855046145, '离线地图', 'map', 1519251313542508545, 'iconfont iconicon_GPS', 1, 1, 0, 1123598821738675201, 1123598813738675201, '2022-04-27 17:45:44', 1123598821738675201, '2022-05-31 15:55:44'), (1519306028947025921, '象形图', 'pictogram', 1518807897627492354, 'iconfont iconicon_scan_namecard', 1, 5, 0, 1123598821738675201, 1123598813738675201, '2022-04-27 21:22:39', 1123598821738675201, '2022-04-27 21:22:39'), (1519306692209094658, '进度图', 'progress', 1518807897627492354, '', 1, 4, 0, 1123598821738675201, 1123598813738675201, '2022-04-27 21:25:17', 1123598821738675201, '2022-04-27 22:14:33'), (1519318320526864385, '雷达图', 'radar', 1518807897627492354, '', 1, 8, 0, 1123598821738675201, 1123598813738675201, '2022-04-27 22:11:30', 1123598821738675201, '2022-04-27 22:11:30'), (1519318721410052097, '散点图', 'scatter', 1518807897627492354, '', 1, 10, 0, 1123598821738675201, 1123598813738675201, '2022-04-27 22:13:05', 1123598821738675201, '2022-04-27 22:13:05'), (1519319385850720257, '漏斗图', 'funnel', 1518807897627492354, '', 1, 111, 0, 1123598821738675201, 1123598813738675201, '2022-04-27 22:15:44', 1123598821738675201, '2022-04-27 22:15:44'), (1519325202251460610, '表格', 'tables', 0, '', 1, 3, 0, 1123598821738675201, 1123598813738675201, '2022-04-27 22:38:51', 1123598821738675201, '2022-04-27 22:41:09'), (1519325386276548609, '基础表格', 'base_table', 1519325202251460610, '', 1, 0, 0, 1123598821738675201, 1123598813738675201, '2022-04-27 22:39:34', 1123598821738675201, '2022-04-27 22:39:34'), (1519325536503934978, '轮播表格', 'rotation_table', 1519325202251460610, '', 1, 1, 0, 1123598821738675201, 1123598813738675201, '2022-04-27 22:40:10', 1123598821738675201, '2022-04-27 22:40:10'), (1523570439766257666, 'fms托盘', 'fms', 1519251313542508545, '', 1, 33, 0, 1123598821738675201, 1123598813738675201, '2022-05-09 15:47:54', 1123598821738675201, '2022-05-09 15:47:54'), (1531802529423138818, '装饰', 'decorates', 0, '', 1, 4, 0, 1123598821738675201, 1123598813738675201, '2022-06-01 08:59:17', 1123598821738675201, '2022-06-01 08:59:17'), (1531804373545361410, '设备报警', 'device_alarm', 1518807926647881730, '', 1, 2, 0, 1123598821738675201, 1123598813738675201, '2022-06-01 09:06:37', 1123598821738675201, '2022-06-01 09:06:37'), (1531804453996306434, '设备状态', 'device_status', 1518807926647881730, '', 1, 0, 0, 1123598821738675201, 1123598813738675201, '2022-06-01 09:06:56', 1123598821738675201, '2022-06-01 09:06:56'), (1531828213826691073, '媒体', 'media', 1519251313542508545, '', 1, 0, 0, 1123598821738675201, 1123598813738675201, '2022-06-01 10:41:21', 1123598821738675201, '2022-06-01 11:20:17'); INSERT INTO blade_notify_config(id, name, type, provider, configuration, description, create_user, create_dept, create_time, update_user, update_time, status, is_deleted, tenant_id) VALUES ('1', '站内信默认配置', 'internalMessage', 'systemDefault', '{}', NULL, 1123598821738675201, 1123598813738675201, '2022-05-25 19:34:41', 1123598821738675201, '2022-05-25 19:34:41', 1, 0, '000000'), ('1001', '默认', 'dingTalk', 'dingTalkMessage', '', NULL, 1123598821738675201, 1123598813738675201, '2022-05-26 18:38:38', 1123598821738675201, '2022-05-30 10:23:59', 1, 0, '000000'), ('1002', '默认', 'weiXinQY', 'qyTextMessage', '', NULL, 1524925283405565953, 1123598813738675201, '2022-05-27 09:55:49', 1524925283405565953, '2022-05-27 09:55:49', 1, 0, '000000'), ('1003', '默认', 'email', 'embedded', '', '', 1123598821738675201, 1123598813738675201, '2022-08-03 13:06:12', 1123598821738675201, '2022-08-03 13:06:12', 1, 0, '000000'); INSERT INTO blade_scope_api(id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1529330980265865217, 1481429815657304065, 'folder.folder_page', '分页查询文件夹下文件以及文件夹', '/blade-dnc/folder/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:18:14', 1123598821738675201, '2022-05-25 13:18:14', 1, 0), (1529330980265865218, 1481429815657304065, 'folder.lazy_folder_list', '文件夹列表(懒加载)', '/blade-dnc/folder/lazy', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:18:14', 1123598821738675201, '2022-05-25 13:18:14', 1, 0), (1529332133837877249, 1481429369576296449, 'transfer_directory_file.get_file_history', '工位文件版本历史列表', '/blade-dnc/transfer-directory/*/fileHistoryList', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:22:49', 1123598821738675201, '2022-05-25 13:22:49', 1, 0), (1529332133837877250, 1481429369576296449, 'transfer_directory_file.get_workstation_file', '获取工位目录下的文件列表', '/blade-dnc/transfer-directory/fileList', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:22:49', 1123598821738675201, '2022-05-25 13:22:49', 1, 0), (1529332133837877252, 1481429369576296449, 'transfer_directory_file.online_read', '在线读文件', '/blade-dnc/transfer-directory/online-read-file', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:22:49', 1123598821738675201, '2022-05-25 13:22:49', 1, 0), (1529332385865216001, 1518864188126339074, 'trace_catalog.get_pages', '工件上线记录分页', '/blade-trace/trace-catalog/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:23:49', 1123598821738675201, '2022-05-25 13:23:49', 1, 0), (1529332386355949570, 1481429369576296449, 'dnc_archive_directory.list', 'dnc 归档目录(懒加载)列表', '/blade-dnc/dnc-archive-directory/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:23:49', 1123598821738675201, '2022-05-25 13:23:49', 1, 0), (1529332773859307522, 1481429369576296449, 'dnc_archive_directory_file.check_file', '验证归档文件是否已经重复', '/blade-dnc/dnc-archive-directory-file/checkFile', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:25:22', 1123598821738675201, '2022-05-25 13:25:22', 1, 0), (1529332773859307523, 1481429369576296449, 'dnc_archive_directory_file.insert', '归档目录文件新增', '/blade-dnc/dnc-archive-directory-file/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:25:22', 1123598821738675201, '2022-05-25 13:25:22', 1, 0), (1529333071340318722, 1481429369576296449, 'dnc_process_catalogue.lazy_art_bag_list', '工艺目录表工艺包列表(懒加载)', '/blade-dnc/dnc-process-catalogue/lazy-art-list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:26:32', 1123598821738675201, '2022-05-25 13:26:32', 1, 0), (1529333344926380034, 1481429369576296449, 'transfer_directory_file.get_online_file_list', '机床文件列表', '/blade-dnc/transfer-directory/online-file-list', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:27:38', 1123598821738675201, '2022-05-25 13:27:38', 1, 0), (1529333439264665601, 1481429369576296449, 'dnc_operation_log.get_suffix_list', '后缀名', '/blade-dnc/operation-file/list/suffix', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:28:00', 1123598821738675201, '2022-05-25 13:28:00', 1, 0), (1529333644156416003, 1518864188126339074, 'trace_flow_record.get_trace_catalog_and_flow_record', '根据工件编码获取工件流程记录', '/blade-trace/trace-flow-record/record', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:28:49', 1123598821738675201, '2022-05-25 13:28:49', 1, 0), (1529333659117498369, 1481428568128688130, 'folder.folder_list', '文件夹下文件以及文件夹', '/blade-dnc/folder', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:28:53', 1123598821738675201, '2022-05-25 13:28:53', 1, 0), (1529333659121692674, 1481428568128688130, 'folder.lazy_folder_list', '文件夹列表(懒加载)', '/blade-dnc/folder/lazy', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:28:53', 1123598821738675201, '2022-05-25 13:28:53', 1, 0), (1529333755322249217, 1481428568128688130, 'dnc_process_catalogue.lazy_art_bag_list', '工艺目录表工艺包列表(懒加载)', '/blade-dnc/dnc-process-catalogue/lazy-art-list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:29:16', 1123598821738675201, '2022-05-25 13:29:16', 1, 0), (1529334017373974530, 1519183072176939010, 'workstation_workbench.list_by_group_id', '根据工位组查询工位和工作台集合', '/blade-cps/workstation-workbench/listByGroupId', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:30:18', 1123598821738675201, '2022-05-25 13:30:18', 1, 0), (1529334359973113858, 1518832588427309057, 'visual_comp.page', '大屏组件分页', '/blade-visual/visual-comp/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:31:40', 1123598821738675201, '2022-05-25 13:31:40', 1, 0), (1529334470946009090, 1518832588427309057, 'visual_comp_type.list', '大屏组件分类列表,树结构', '/blade-visual/visual-comp-type/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:32:06', 1123598821738675201, '2022-05-25 13:32:06', 1, 0), (1529334596028542979, 1481428568128688130, 'dnc_art_file.list', '工艺包文件列表', '/blade-dnc/dnc-art-file/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:32:36', 1123598821738675201, '2022-05-25 13:32:36', 1, 0), (1529334799624253442, 1529300353118318593, 'visual_comp.insert', '大屏组件新增', '/blade-visual/visual-comp/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:33:25', 1123598821738675201, '2022-05-25 13:33:25', 1, 0), (1529334987864616961, 1529300502066442242, 'visual_comp.component_download', '大屏导出', '/blade-visual/visual-comp/zip/download', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:34:09', 1123598821738675201, '2022-05-25 13:34:09', 1, 0), (1529334998543314945, 1481428568128688130, 'transfer_directory_file.exist_duplicate_file', '验证文件是否重复', '/blade-dnc/transfer-directory/duplicate-file', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:34:12', 1123598821738675201, '2022-05-25 13:34:12', 1, 0), (1529334998547509249, 1481428568128688130, 'transfer_directory_file.get_workstation_file', '获取工位目录下的文件列表', '/blade-dnc/transfer-directory/fileList', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:34:12', 1123598821738675201, '2022-05-25 13:34:12', 1, 0), (1529334998547509250, 1481428568128688130, 'transfer_directory_file.online_read', '在线读文件', '/blade-dnc/transfer-directory/online-read-file', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:34:12', 1123598821738675201, '2022-05-25 13:34:12', 1, 0), (1529335243402588162, 1481428568128688130, 'dnc_art_file.duplicate_validation_art_file', '验证工艺包文件是否存在', '/blade-dnc/dnc-art-file/duplicate-validation-file', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:35:10', 1123598821738675201, '2022-05-25 13:35:10', 1, 0), (1529335311354507266, 1529300428330577922, 'visual_comp.remove', '大屏组件删除', '/blade-visual/visual-comp/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 13:35:27', 1123598821738675201, '2022-05-25 13:35:27', 1, 0), (1529335381609099265, 1519183072176939010, 'trace_flow_settings.detail', '流程维护详情', '/blade-trace/trace-flow-settings/get/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:35:43', 1123598821738675201, '2022-05-25 13:35:43', 1, 0), (1529335381609099267, 1519183072176939010, 'trace_flow_settings.page', '流程维护分页', '/blade-trace/trace-flow-settings/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:35:43', 1123598821738675201, '2022-05-25 13:35:43', 1, 0), (1529335430569209858, 1529300709508329473, 'visual_comp.update', '大屏组件修改', '/blade-visual/visual-comp/update', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 13:35:55', 1123598821738675201, '2022-05-25 13:35:55', 1, 0), (1529335494528151553, 1529300581800161282, 'visual_comp.component_import', '大屏导入', '/blade-visual/visual-comp/zip/import', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:36:10', 1123598821738675201, '2022-05-25 13:36:10', 1, 0), (1529335599108927490, 1518832798666797058, 'visual_comp_type.detail', '大屏组件分类详情', '/blade-visual/visual-comp-type/get/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:36:35', 1123598821738675201, '2022-05-25 13:36:35', 1, 0), (1529335599113121793, 1518832798666797058, 'visual_comp_type.list', '大屏组件分类列表,树结构', '/blade-visual/visual-comp-type/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:36:35', 1123598821738675201, '2022-05-25 13:36:35', 1, 0), (1529335886309699586, 1529301153127280641, 'visual_comp_type.update', '大屏组件分类修改', '/blade-visual/visual-comp-type/update', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 13:37:44', 1123598821738675201, '2022-05-25 13:37:44', 1, 0), (1529335957965189122, 1522377449602215938, 'ng_reason_info.is_reason_code_repeat', 'NG原因Code是否重复', '/blade-trace/ng-reason-info/is-code-repeat', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:38:01', 1123598821738675201, '2022-05-25 13:38:01', 1, 0), (1529335957965189123, 1522377449602215938, 'ng_reason_info.page', 'NG原因维护信息表分页', '/blade-trace/ng-reason-info/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:38:01', 1123598821738675201, '2022-05-25 13:38:01', 1, 0), (1529336055742803969, 1529301061536264193, 'visual_comp_type.insert', '大屏组件分类新增', '/blade-visual/visual-comp-type/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:38:24', 1123598821738675201, '2022-05-25 13:38:24', 1, 0), (1529336154338308097, 1529301209179959298, 'visual_comp_type.remove', '大屏组件分类删除', '/blade-visual/visual-comp-type/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 13:38:48', 1123598821738675201, '2022-05-25 13:38:48', 1, 0), (1529336428780007426, 1481429369576296449, 'dnc_operation_log.get_page_workstation_log', 'dnc工位操作日志查询分页', '/blade-dnc/operation-file/page/*', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:39:53', 1123598821738675201, '2022-05-25 13:39:53', 1, 0), (1529336559235444737, 1503616665762193409, 'interface_config.page', '接口配置表分页', '/blade-system/interface-config/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:40:24', 1123598821738675201, '2022-05-25 13:40:24', 1, 0), (1529336596443115522, 1529301306865299457, 'interface_config.insert', '接口配置表新增', '/blade-system/interface-config/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:40:33', 1123598821738675201, '2022-05-25 13:40:33', 1, 0), (1529336690391330817, 1529301423924129793, 'interface_config.update', '接口配置表修改', '/blade-system/interface-config/update', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 13:40:55', 1123598821738675201, '2022-05-25 13:40:55', 1, 0), (1529337252897828865, 1529301593445314562, 'interface_config.remove', '接口配置表删除', '/blade-system/interface-config/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 13:43:09', 1123598821738675201, '2022-05-25 13:43:09', 1, 0), (1529337401996947458, 1123598815738675204, 'user.page', '列表', '/blade-user/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:43:45', 1123598821738675201, '2022-05-25 13:43:45', 1, 0), (1529337471609810947, 1523465621521539073, 'trace_flow_record.workpiece_trace_page', '工件追溯', '/blade-trace/trace-flow-record/page/record-ng', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:44:02', 1123598821738675201, '2022-05-25 13:44:02', 1, 0), (1529337547707068418, 1123598815738675223, 'user.submit', '新增或修改', '/blade-user/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:44:20', 1123598821738675201, '2022-05-25 13:44:20', 1, 0), (1529337597803835393, 1123598815738675224, 'post.submit', '新增或修改', '/blade-system/post/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:44:32', 1123598821738675201, '2022-05-25 13:44:32', 1, 0), (1529337686463033346, 1529301906063568898, 'user.unlock', '', '/blade-user/unlock', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:44:53', 1123598821738675201, '2022-05-25 13:44:53', 1, 0), (1529337916004708354, 1123598815738675225, 'user.remove', '删除', '/blade-user/remove', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:45:48', 1123598821738675201, '2022-05-25 13:45:48', 1, 0), (1529337953266905090, 1123598815738675227, 'user.reset_password', '初始化密码', '/blade-user/reset-password', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:45:56', 1123598821738675201, '2022-05-25 13:45:56', 1, 0), (1529338088717758466, 1460887380398260225, 'user.enable', '启停用', '/blade-user/changeStatus', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:46:29', 1123598821738675201, '2022-05-25 13:46:29', 1, 0), (1529338203658465282, 1497086897538789377, 'material_type.get_material_type_list', '查询物料类型列表(不分页)', '/blade-cps/material-type/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:46:56', 1123598821738675201, '2022-05-25 13:46:56', 1, 0), (1529338214567849986, 1123598815738675308, 'menu.role_tree_keys', '角色所分配的树', '/blade-system/menu/role-tree-keys', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:46:59', 1123598821738675201, '2022-05-25 13:46:59', 1, 0), (1529338357010608130, 1497086897538789377, 'material.get_page_material', '查询分页', '/blade-cps/material/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:47:33', 1123598821738675201, '2022-05-25 13:47:33', 1, 0), (1529338370725982210, 1123598815738675241, 'role.submit', '新增或修改', '/blade-system/role/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:47:36', 1123598821738675201, '2022-05-25 13:47:36', 1, 0), (1529338409074503682, 1123598815738675242, 'role.submit', '新增或修改', '/blade-system/role/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:47:45', 1123598821738675201, '2022-05-25 13:47:45', 1, 0), (1529338505849679874, 1529303645084921857, 'user.role_bind_users', '角色绑定账号', '/blade-user/*/save', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:48:08', 1123598821738675201, '2022-05-25 13:48:08', 1, 0), (1529338573126316034, 1123598815738675243, 'user.role_remove_users', '角色移除账号', '/blade-user/*/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 13:48:24', 1123598821738675201, '2022-05-25 13:48:24', 1, 0), (1529338734208561153, 1529304509010882561, 'role.grant', '权限设置', '/blade-system/role/grant', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:49:03', 1123598821738675201, '2022-05-25 13:49:03', 1, 0), (1529338787786600449, 1529303719558983682, 'role.remove', '删除', '/blade-system/role/remove', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:49:15', 1123598821738675201, '2022-05-25 13:49:15', 1, 0), (1529339348263055361, 1123598815738675311, 'api_scope.list', '分页', '/blade-system/api-scope/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:51:29', 1123598821738675201, '2022-05-25 13:51:29', 1, 0), (1529339405817294850, 1529304749487108097, 'api_scope.remove', '逻辑删除', '/blade-system/api-scope/remove', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:51:43', 1123598821738675201, '2022-05-25 13:51:43', 1, 0), (1529339446913085442, 1529338583352029185, 'material.delete_material', '删除物料(支持批量)', '/blade-cps/material/delete-material', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 13:51:53', 1123598821738675201, '2022-05-25 13:51:53', 1, 0), (1529339477246291969, 1529304675503779842, 'api_scope.save', '新增', '/blade-system/api-scope/save', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:52:00', 1123598821738675201, '2022-05-25 13:52:00', 1, 0), (1529339542820040706, 1529338949862895617, 'material.export_material', '导出物料信息', '/blade-cps/material/export-material', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:52:15', 1123598821738675201, '2022-05-25 13:52:15', 1, 0), (1529339617713532929, 1529339043613978625, 'material.import_material', '导入物料信息', '/blade-cps/material/import-material', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:52:33', 1123598821738675201, '2022-05-25 13:52:33', 1, 0), (1529339719509291010, 1529339043613978625, 'material.export_template', '导出模板', '/blade-cps/material/export-template', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:52:58', 1123598821738675201, '2022-05-25 13:52:58', 1, 0), (1529339899021307905, 1529339144184999937, 'material.update_material', '修改物料', '/blade-cps/material/update-material', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 13:53:40', 1123598821738675201, '2022-05-25 13:53:40', 1, 0), (1529339966616711170, 1529339271121416194, 'material.create_material', '新增物料', '/blade-cps/material/create-material', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:53:56', 1123598821738675201, '2022-05-25 13:53:56', 1, 0), (1529340090529034242, 1504297396495781890, 'i18n_data.get_i18n_data_page', '分页查询', '/blade-system/i18n/i18n-data/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:54:26', 1123598821738675201, '2022-05-25 13:54:26', 1, 0), (1529340176449351681, 1529304859042328578, 'i18n_data.save', '新增国际化信息', '/blade-system/i18n/i18n-data', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:54:46', 1123598821738675201, '2022-05-25 13:54:46', 1, 0), (1529340546500210690, 1529304933281509378, 'i18n_data.update_by_id', '修改国际化信息', '/blade-system/i18n/i18n-data', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 13:56:15', 1123598821738675201, '2022-05-25 13:56:15', 1, 0), (1529340640955936769, 1529305169731203073, 'i18n_data.export_i18n_data', '导出国际化信息', '/blade-system/i18n/i18n-data/export', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:56:37', 1123598821738675201, '2022-05-25 13:56:37', 1, 0), (1529340692013199361, 1529305101015920642, 'i18n_data.import_i18n_data', '导入国际化信息', '/blade-system/i18n/i18n-data/import', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:56:49', 1123598821738675201, '2022-05-25 13:56:49', 1, 0), (1529340743192096769, 1529305042987724802, 'i18n_data.remove', '通过id删除国际化信息', '/blade-system/i18n/i18n-data', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 13:57:02', 1123598821738675201, '2022-05-25 13:57:02', 1, 0), (1529341077897555970, 1123598815738675237, 'menu.submit', '新增或修改', '/blade-system/menu/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:58:21', 1123598821738675201, '2022-05-25 13:58:21', 1, 0), (1529341116854251522, 1123598815738675238, 'menu.submit', '新增或修改', '/blade-system/menu/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:58:31', 1123598821738675201, '2022-05-25 13:58:31', 1, 0), (1529341219354652674, 1123598815738675239, 'menu.remove', '删除', '/blade-system/menu/remove', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 13:58:55', 1123598821738675201, '2022-05-25 13:58:55', 1, 0), (1529341261100560386, 1123598815738675240, 'menu.detail', '详情', '/blade-system/menu/detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:59:05', 1123598821738675201, '2022-05-25 13:59:05', 1, 0), (1529342042331623425, 1123598815738675233, 'dict.submit', '', '/blade-system/dict/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:02:11', 1123598821738675201, '2022-05-25 14:02:11', 1, 0), (1529342093862842369, 1123598815738675234, 'dict.submit', '', '/blade-system/dict/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:02:24', 1123598821738675201, '2022-05-25 14:02:24', 1, 0), (1529342164184543233, 1123598815738675235, 'dict.remove', '删除', '/blade-system/dict/remove', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:02:40', 1123598821738675201, '2022-05-25 14:02:40', 1, 0), (1529342375036399618, 1123598815738675245, 'param.submit', '新增或修改', '/blade-system/param/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:03:31', 1123598821738675201, '2022-05-25 14:03:31', 1, 0), (1529342412902576130, 1123598815738675246, 'param.submit', '新增或修改', '/blade-system/param/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:03:40', 1123598821738675201, '2022-05-25 14:03:40', 1, 0), (1529342466048602113, 1123598815738675247, 'param.remove', '逻辑删除', '/blade-system/param/remove', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:03:52', 1123598821738675201, '2022-05-25 14:03:52', 1, 0), (1529342881582493698, 1529342508075528193, 'material_type.create_material_type', '新增物料类型', '/blade-cps/material-type/create-material-type', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:05:31', 1123598821738675201, '2022-05-25 14:05:31', 1, 0), (1529342926054699009, 1529342695900655617, 'material_type.delete_material_type', '删除物料类型(支持批量)', '/blade-cps/material-type/delete-material-type', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 14:05:42', 1123598821738675201, '2022-05-25 14:05:42', 1, 0), (1529343108737609730, 1497086897538789377, 'material_type.get_page_material_type', '查询分页', '/blade-cps/material-type/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:06:26', 1123598821738675201, '2022-05-25 14:06:26', 1, 0), (1529343445926096897, 1123598815738675215, 'log_api.list', '', '/blade-log/api/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:07:46', 1123598821738675201, '2022-05-25 14:07:46', 1, 0), (1529343477198827521, 1123598815738675250, 'log_api.detail', '', '/blade-log/api/detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:07:53', 1123598821738675201, '2022-05-25 14:07:53', 1, 0), (1529343551568031745, 1123598815738675214, 'log_usual.list', '', '/blade-log/usual/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:08:11', 1123598821738675201, '2022-05-25 14:08:11', 1, 0), (1529343583105003521, 1123598815738675249, 'log_usual.detail', '', '/blade-log/usual/detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:08:19', 1123598821738675201, '2022-05-25 14:08:19', 1, 0), (1529344187479044098, 1123598815738675216, 'log_error.list', '', '/blade-log/error/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:10:43', 1123598821738675201, '2022-05-25 14:10:43', 1, 0), (1529344210623213569, 1123598815738675251, 'log_error.detail', '', '/blade-log/error/detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:10:48', 1123598821738675201, '2022-05-25 14:10:48', 1, 0), (1529344319557677058, 1164733399669962201, 'attach.list', '分页', '/blade-resource/attach/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:11:14', 1123598821738675201, '2022-05-25 14:11:14', 1, 0), (1529344880164155393, 1164733399669962202, 'oss_endpoint.put_file_attach', '', '/blade-resource/oss/endpoint/put-file-attach', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:13:28', 1123598821738675201, '2022-05-25 14:13:28', 1, 0), (1529346867861598210, 1164733399669962204, 'attach.remove', '逻辑删除', '/blade-resource/attach/remove', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:21:22', 1123598821738675201, '2022-05-25 14:21:22', 1, 0), (1529346999613075458, 1476448719033671682, 'global_wcs.list', '列表', '/blade-cps/global_wcs/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:21:53', 1123598821738675201, '2022-05-25 14:21:53', 1, 0), (1529347169855680513, 1476448719033671682, 'workstation.get_real_time_status', '根据工位组Id获取工位的实时状态', '/blade-cps/workstation/real-time-status', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:22:34', 1123598821738675201, '2022-05-25 14:22:34', 1, 0), (1529347647716929537, 1476789818350559234, 'global_wcs.list', '列表', '/blade-cps/global_wcs/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:24:28', 1123598821738675201, '2022-05-25 14:24:28', 1, 0), (1529348041264279554, 1476789818350559234, 'workstation.get', '获取工位信息', '/blade-cps/workstation/get', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:26:02', 1123598821738675201, '2022-05-25 14:26:02', 1, 0), (1529348041264279555, 1476789818350559234, 'workstation.get_dmp_variables', '获得采集项', '/blade-cps/workstation/get-dmp-variables', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:26:02', 1123598821738675201, '2022-05-25 14:26:02', 1, 0), (1529348285267914754, 1476789818350559234, 'workstation_analysis.alarm_by_workstation', '工位预警信息', '/blade-mdc/work-station-analysis/alarm/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:27:00', 1123598821738675201, '2022-05-25 14:27:00', 1, 0), (1529348285272109057, 1476789818350559234, 'workstation_analysis.status_by_workstation', '工位当日状态甘特图', '/blade-mdc/work-station-analysis/status/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:27:00', 1123598821738675201, '2022-05-25 14:27:00', 1, 0), (1529348476561731585, 1502512819019243521, 'process_parameter.list_global_wcs', '获取wcs颜色', '/blade-mdc/process-parameter', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:27:45', 1123598821738675201, '2022-05-25 14:27:45', 1, 0), (1529349016226050050, 1465150590017654786, 'bas_coderule.count', 'count', '/blade-system/bascoderule/count', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:29:54', 1123598821738675201, '2022-05-25 14:29:54', 1, 0), (1529349115236790273, 1465150590017654786, 'bas_coderule.list', '分页', '/blade-system/bascoderule/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:30:18', 1123598821738675201, '2022-05-25 14:30:18', 1, 0), (1529349338021441538, 1465150590017654786, 'meta_object_type_field.find_all', '分页', '/blade-system/meta-object-type-field/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:31:11', 1123598821738675201, '2022-05-25 14:31:11', 1, 0), (1529349694323372033, 1529349606834384898, 'status_record.export_status_record', '状态记录导出', '/blade-mdc/status-record/excel/export', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:32:36', 1123598821738675201, '2022-05-25 14:32:36', 1, 0), (1529349772823965697, 1465150590017654786, 'meta_object_type.detail', '详情', '/blade-system/meta-object-type/detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:32:54', 1123598821738675201, '2022-05-25 14:32:54', 1, 0), (1529349880651132930, 1469106123422236674, 'bas_coderule.submit', '新增或修改', '/blade-system/bascoderule/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:33:20', 1123598821738675201, '2022-05-25 14:33:20', 1, 0), (1529350065200508930, 1469106388762296321, 'bas_coderule.submit', '新增或修改', '/blade-system/bascoderule/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:34:04', 1123598821738675201, '2022-05-25 14:34:04', 1, 0), (1529350209031581698, 1529305801384996865, 'meta_object_type.save_rule_field', '开启分类,或者关闭分类', '/blade-system/meta-object-type/save-rule-field', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:34:38', 1123598821738675201, '2022-05-25 14:34:38', 1, 0), (1529350593263382529, 1529305723731652609, 'bas_coderule.remove', '逻辑删除', '/blade-system/bascoderule/remove', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:36:10', 1123598821738675201, '2022-05-25 14:36:10', 1, 0), (1529350718899564546, 1475640981749178369, 'global_wcs.list', '列表', '/blade-cps/global_wcs/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:36:40', 1123598821738675201, '2022-05-25 14:36:40', 1, 0), (1529350854849540098, 1475640981749178369, 'time_used_analysis.query_work_station_shift_index_name', '查询工位绑定的班次信息', '/blade-mdc/time-used-analysis/workstation/shiftName', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:37:12', 1123598821738675201, '2022-05-25 14:37:12', 1, 0), (1529350854853734401, 1475640981749178369, 'time_used_analysis.time_used_statistics_by_workstation', '按多设备统计用时', '/blade-mdc/time-used-analysis/work-stations', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:37:12', 1123598821738675201, '2022-05-25 14:37:12', 1, 0), (1529350967311413250, 1491332507161034753, 'meta_object_type.detail', '详情', '/blade-system/meta-object-type/detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:37:39', 1123598821738675201, '2022-05-25 14:37:39', 1, 0), (1529350967311413251, 1491332507161034753, 'meta_object_type.table_detail', '', '/blade-system/meta-object-type/tableDetail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:37:39', 1123598821738675201, '2022-05-25 14:37:39', 1, 0), (1529351038652329985, 1529305965168373761, 'meta_object_type.submit', '', '/blade-system/meta-object-type/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:37:56', 1123598821738675201, '2022-05-25 14:37:56', 1, 0), (1529351050417352706, 1498900340410212354, 'efficiency_analysis.efficiency_analysis', '效率分析', '/blade-mdc/efficiency-analysis', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:37:59', 1123598821738675201, '2022-05-25 14:37:59', 1, 0), (1529351225009451009, 1503199291613646849, 'output_statistics.output_statistics', '产量统计', '/blade-mdc/output', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:38:41', 1123598821738675201, '2022-05-25 14:38:41', 1, 0), (1529351424138227713, 1503250876000481282, 'alarm.list_shift_alarm', '报警统计-班次-数据表', '/blade-mdc/alarm/data-shift-sheet', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:39:28', 1123598821738675201, '2022-05-25 14:39:28', 1, 0), (1529351424138227714, 1503250876000481282, 'alarm.page_alarm', '报警统计-数据表', '/blade-mdc/alarm/data-sheet', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:39:28', 1123598821738675201, '2022-05-25 14:39:28', 1, 0), (1529351424138227715, 1503250876000481282, 'alarm.summary_graph', '报警统计-统计图', '/blade-mdc/alarm/summary-graph', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:39:28', 1123598821738675201, '2022-05-25 14:39:28', 1, 0), (1529351424138227716, 1503250876000481282, 'alarm.summary_shift_graph', '报警统计-班次-统计图', '/blade-mdc/alarm/summary-shift-graph', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:39:28', 1123598821738675201, '2022-05-25 14:39:28', 1, 0), (1529351449094336513, 1529306107384639489, 'oss.update', '修改', '/blade-resource/oss/update', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:39:34', 1123598821738675201, '2022-05-25 14:39:34', 1, 0), (1529352039593619457, 1529350373947420673, 'alarm.export_alarm_data', '报警统计-导出文件', '/blade-mdc/alarm/export-alarm', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:41:55', 1123598821738675201, '2022-05-25 14:41:55', 1, 0), (1529352392649158657, 1498471500208750594, 'process_parameter.get_shift_time', '获取班次开始结束时间', '/blade-mdc/process-parameter/shift-time', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:43:19', 1123598821738675201, '2022-05-25 14:43:19', 1, 0), (1529352392649158658, 1498471500208750594, 'process_parameter.list_global_wcs', '获取wcs颜色', '/blade-mdc/process-parameter', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:43:19', 1123598821738675201, '2022-05-25 14:43:19', 1, 0), (1529352392653352961, 1498471500208750594, 'process_parameter.page_process_parameter', '分页查询采集项数据', '/blade-mdc/process-parameter/*', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:43:19', 1123598821738675201, '2022-05-25 14:43:19', 1, 0), (1529352392653352962, 1498471500208750594, 'process_parameter.process_param', '参数选择', '/blade-mdc/process-parameter/param', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:43:19', 1123598821738675201, '2022-05-25 14:43:19', 1, 0), (1529352392653352963, 1498471500208750594, 'process_parameter.query_process_parameter_chart', '加工过程参数', '/blade-mdc/process-parameter/chart', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:43:19', 1123598821738675201, '2022-05-25 14:43:19', 1, 0), (1529352392653352964, 1498471500208750594, 'process_parameter.query_process_parameter_sheet', '加工过程参数', '/blade-mdc/process-parameter/sheet', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:43:19', 1123598821738675201, '2022-05-25 14:43:19', 1, 0), (1529352410223292418, 1496427333921992705, 'dnc_art_bag.page', '工艺包分页', '/blade-dnc/dnc-art-bag/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:43:23', 1123598821738675201, '2022-05-25 14:43:23', 1, 0), (1529352455295283201, 1496427333921992705, 'dnc_process_catalogue.lazy_list', '工艺目录表列表(懒加载)', '/blade-dnc/dnc-process-catalogue/lazy-list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:43:34', 1123598821738675201, '2022-05-25 14:43:34', 1, 0), (1529352588577681410, 1529350477500592129, 'process_parameter.export_process_param', '导出加工过程参数', '/blade-mdc/process-parameter/excel/export', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:44:06', 1123598821738675201, '2022-05-25 14:44:06', 1, 0), (1529352964571869186, 1475761204784312321, 'global_wcs.list', '列表', '/blade-cps/global_wcs/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:45:35', 1123598821738675201, '2022-05-25 14:45:35', 1, 0), (1529353007106306049, 1496427333921992705, 'dnc_art_bag.detail', '工艺包详情', '/blade-dnc/dnc-art-bag/get/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:45:46', 1123598821738675201, '2022-05-25 14:45:46', 1, 0), (1529353744993431553, 1475761204784312321, 'global_wcs.update_wcs_and_achievements', '编辑状态和绩效时间', '/blade-cps/global_wcs/update-wcs-achievements', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:48:41', 1123598821738675201, '2022-05-25 14:48:41', 1, 0), (1529354713185595393, 1496427333921992705, 'dnc_art_file.list', '工艺包文件列表', '/blade-dnc/dnc-art-file/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:52:32', 1123598821738675201, '2022-05-25 14:52:32', 1, 0), (1529354776897073154, 1496427333921992705, 'dnc_art_product.list', '工艺包关联产品列表', '/blade-dnc/dnc-art-product/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:52:48', 1123598821738675201, '2022-05-25 14:52:48', 1, 0), (1529356082210615298, 1496427333921992705, 'dnc_art_bag_log.list_file_class', '文件类型', '/blade-dnc/dnc-art-bag-log/list-file-class', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 14:57:59', 1123598821738675201, '2022-05-25 14:57:59', 1, 0), (1529356082210615299, 1496427333921992705, 'dnc_art_bag_log.page', '工艺包日志分页', '/blade-dnc/dnc-art-bag-log/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 14:57:59', 1123598821738675201, '2022-05-25 14:57:59', 1, 0), (1529357596094312449, 1523465621521539073, 'ng_reason_info.page_not_use', 'NG原因维护信息表分页', '/blade-trace/ng-reason-info/page/not-use', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 15:04:00', 1123598821738675201, '2022-05-25 15:04:00', 1, 0), (1529357822964215809, 1496427333921992705, 'dnc_art_file.duplicate_validation_art_file', '验证工艺包文件是否存在', '/blade-dnc/dnc-art-file/duplicate-validation-file', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:04:54', 1123598821738675201, '2022-05-25 15:04:54', 1, 0), (1529358072185565186, 1502512819019243521, 'status_record.get_equipment_efficiency', '查询设备效率', '/blade-mdc/status-record/equipment-efficiency', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:05:53', 1123598821738675201, '2022-05-25 15:05:53', 1, 0), (1529358072189759489, 1502512819019243521, 'status_record.get_shift_index_status_record_chart', '查询班次状态记录图表', '/blade-mdc/status-record/shift-index-status-record-chart', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:05:53', 1123598821738675201, '2022-05-25 15:05:53', 1, 0), (1529358072189759490, 1502512819019243521, 'status_record.get_shift_index_status_record_table', '查询班次状态记录表格', '/blade-mdc/status-record/shift-index-status-record-table', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:05:53', 1123598821738675201, '2022-05-25 15:05:53', 1, 0), (1529358072193953794, 1502512819019243521, 'status_record.get_status_record_by_date', '根据日期查询状态记录', '/blade-mdc/status-record/status-record-by-date', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:05:53', 1123598821738675201, '2022-05-25 15:05:53', 1, 0), (1529358072193953795, 1502512819019243521, 'status_record.get_status_record_by_workstation', '根据工位查询状态记录', '/blade-mdc/status-record/status-record-by-workstation', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:05:53', 1123598821738675201, '2022-05-25 15:05:53', 1, 0), (1529358072193953796, 1502512819019243521, 'status_record.get_time_distribution', '查询用时分布情况', '/blade-mdc/status-record/time-distribution', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:05:53', 1123598821738675201, '2022-05-25 15:05:53', 1, 0), (1529358674974158850, 1498202645019426818, 'dnc_process_catalogue.lazy_list', '工艺目录表列表(懒加载)', '/blade-dnc/dnc-process-catalogue/lazy-list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 15:08:17', 1123598821738675201, '2022-05-25 15:08:17', 1, 0), (1529359335937748993, 1497132713708535809, 'dnc_archive_directory.list', 'dnc 归档目录(懒加载)列表', '/blade-dnc/dnc-archive-directory/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 15:10:54', 1123598821738675201, '2022-05-25 15:10:54', 1, 0), (1529360698327379969, 1497129165478219777, 'dnc_archive_directory_file.page', '归档目录文件分页', '/blade-dnc/dnc-archive-directory-file/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:16:19', 1123598821738675201, '2022-05-25 15:16:19', 1, 0), (1529360771761254401, 1497129165478219777, 'dnc_archive_directory.list', 'dnc 归档目录(懒加载)列表', '/blade-dnc/dnc-archive-directory/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 15:16:37', 1123598821738675201, '2022-05-25 15:16:37', 1, 0), (1529360905731518465, 1497029135171686401, 'dnc_factory_file.page', '工厂文件分页', '/blade-dnc/dnc-factory-file/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 15:17:09', 1123598821738675201, '2022-05-25 15:17:09', 1, 0), (1529361147017244674, 1495960929735061505, 'dnc_operation_log.get_page_all_dnc_data', 'dnc全部操作日志查询分页', '/blade-dnc/operation-file/page-allData', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:18:06', 1123598821738675201, '2022-05-25 15:18:06', 1, 0), (1529368618578423810, 1491309591410286594, 'maintain_plan.get_maintain_plan', '查看保养计划', '/blade-tpm/maintain-plan/get-maintain-plan', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 15:47:48', 1123598821738675201, '2022-05-25 15:47:48', 1, 0), (1529368618578423811, 1491309591410286594, 'maintain_plan.query_maintain_plan_page', '通过设备类型查看保养计划(分页)', '/blade-tpm/maintain-plan/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:47:48', 1123598821738675201, '2022-05-25 15:47:48', 1, 0), (1529368863232176129, 1491309591410286594, 'device_type.page_device_type', '分页查询机器类型', '/blade-cps/device-types/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 15:48:46', 1123598821738675201, '2022-05-25 15:48:46', 1, 0), (1529368955427172354, 1491309591410286594, 'maintain_item.query_maintain_item_list', '查看保养项列表(不分页)', '/blade-cps/maintain-item/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 15:49:08', 1123598821738675201, '2022-05-25 15:49:08', 1, 0), (1529369057969516545, 1491309591410286594, 'machine.page_machine', '分页查询机器', '/blade-cps/machine/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:49:32', 1123598821738675201, '2022-05-25 15:49:32', 1, 0), (1529369169705775106, 1529355676495589378, 'maintain_plan.delete_maintain_plan', '删除保养计划', '/blade-tpm/maintain-plan/delete-maintain-plan', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:49:59', 1123598821738675201, '2022-05-25 15:49:59', 1, 0), (1529369265595953153, 1529355819366166530, 'maintain_plan.export_maintain_plan', '导出', '/blade-tpm/maintain-plan/export', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:50:22', 1123598821738675201, '2022-05-25 15:50:22', 1, 0), (1529369373347622913, 1529356035871944706, 'machine.page_machine', '分页查询机器', '/blade-cps/machine/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:50:48', 1123598821738675201, '2022-05-25 15:50:48', 1, 0), (1529369428628549634, 1529368158077399042, 'shift_off_day.insert', '班次休息日新增', '/blade-cps/shift-off-day/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:51:01', 1123598821738675201, '2022-05-25 15:51:01', 1, 0), (1529369450308907009, 1529356035871944706, 'device_type.page_device_type', '分页查询机器类型', '/blade-cps/device-types/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 15:51:06', 1123598821738675201, '2022-05-25 15:51:06', 1, 0), (1529369518478929922, 1529356035871944706, 'maintain_project.query_maintain_project_list', '通过机器类型查看保养项目列表(不分页)', '/blade-cps/maintain-project/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 15:51:22', 1123598821738675201, '2022-05-25 15:51:22', 1, 0), (1529369546396217346, 1529368239966990337, 'shift_off_day.update', '班次休息日修改', '/blade-cps/shift-off-day/update', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 15:51:29', 1123598821738675201, '2022-05-25 15:51:29', 1, 0), (1529369626666807297, 1529368340881944578, 'shift_off_day.remove', '班次休息日删除', '/blade-cps/shift-off-day/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 15:51:48', 1123598821738675201, '2022-05-25 15:51:48', 1, 0), (1529369839817142274, 1529356172073578498, 'maintain_plan.create_maintain_plan_auto', '生成周期保养计划', '/blade-tpm/maintain-plan/create-maintain-plan-auto', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:52:39', 1123598821738675201, '2022-05-25 15:52:39', 1, 0), (1529369961921720322, 1529356457110089729, 'maintain_plan.create_maintain_plan', '添加临时保养计划', '/blade-tpm/maintain-plan/create-maintain-plan', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:53:08', 1123598821738675201, '2022-05-25 15:53:08', 1, 0), (1529370124157399041, 1529356648080945154, 'maintain_plan.perform_maintain_plan', '执行保养计划', '/blade-tpm/maintain-plan/perform-maintain-plan', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:53:47', 1123598821738675201, '2022-05-25 15:53:47', 1, 0), (1529370225571475458, 1503215833683517442, 'shift_off_day.page', '班次休息日分页', '/blade-cps/shift-off-day/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:54:11', 1123598821738675201, '2022-05-25 15:54:11', 1, 0), (1529370251777486850, 1529356760790282242, 'maintain_plan.get_maintain_plan', '查看保养计划', '/blade-tpm/maintain-plan/get-maintain-plan', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 15:54:17', 1123598821738675201, '2022-05-25 15:54:17', 1, 0), (1529370359218778113, 1529356760790282242, 'maintain_item.query_maintain_item_list', '查看保养项列表(不分页)', '/blade-cps/maintain-item/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 15:54:43', 1123598821738675201, '2022-05-25 15:54:43', 1, 0), (1529370432606515202, 1529356760790282242, 'material.list_by_spare_part', '查询备品备件物料', '/blade-cps/material/listBySparePart', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 15:55:00', 1123598821738675201, '2022-05-25 15:55:00', 1, 0), (1529370437992001538, 1469141105228611586, 'calendar.get_calendar_detail', '查询生产日历详情', '/blade-cps/calendar/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 15:55:01', 1123598821738675201, '2022-05-25 15:55:01', 1, 0), (1529370437992001539, 1469141105228611586, 'calendar.get_page_calendar', '分页查询生产日历', '/blade-cps/calendar/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:55:01', 1123598821738675201, '2022-05-25 15:55:01', 1, 0), (1529370555214409730, 1529356956160962562, 'maintain_record.create_maintain_record', '添加保养记录', '/blade-tpm/maintain-record/create-maintain-record', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:55:29', 1123598821738675201, '2022-05-25 15:55:29', 1, 0), (1529370656007729153, 1529357546177900545, 'maintain_plan.get_maintain_plan', '查看保养计划', '/blade-tpm/maintain-plan/get-maintain-plan', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 15:55:53', 1123598821738675201, '2022-05-25 15:55:53', 1, 0), (1529370751520419842, 1529357671138799617, 'maintain_plan.edit_maintain_plan', '编辑保养计划', '/blade-tpm/maintain-plan/edit-maintain-plan', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:56:16', 1123598821738675201, '2022-05-25 15:56:16', 1, 0), (1529370855694348289, 1469141105228611586, 'shift.get_page_shift', '分页查询班次模型', '/blade-cps/shift/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:56:41', 1123598821738675201, '2022-05-25 15:56:41', 1, 0), (1529370855694348290, 1469141105228611586, 'shift.get_shift_detail', '查询班次详情', '/blade-cps/shift/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 15:56:41', 1123598821738675201, '2022-05-25 15:56:41', 1, 0), (1529370855694348291, 1469141105228611586, 'shift.get_shift_list', '班次模型列表', '/blade-cps/shift/list', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:56:41', 1123598821738675201, '2022-05-25 15:56:41', 1, 0), (1529370923293945857, 1469141105228611586, 'shift_off_day.list', '班次休息日列表', '/blade-cps/shift-off-day/list', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:56:57', 1123598821738675201, '2022-05-25 15:56:57', 1, 0), (1529371007377158146, 1529368856529678337, 'calendar.delete_calendar', '删除生产日历', '/blade-cps/calendar/*', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 15:57:17', 1123598821738675201, '2022-05-25 15:57:17', 1, 0), (1529371061945053186, 1491940085082005505, 'maintain_record.query_maintain_record_page', '通过设备类型查看保养记录(分页)', '/blade-tpm/maintain-record/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:57:30', 1123598821738675201, '2022-05-25 15:57:30', 1, 0), (1529371169981935618, 1491940085082005505, 'device_type.page_device_type', '分页查询机器类型', '/blade-cps/device-types/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 15:57:56', 1123598821738675201, '2022-05-25 15:57:56', 1, 0), (1529371191901368322, 1529368938117279745, 'calendar.save_calendar', '新建生产日历', '/blade-cps/calendar', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:58:01', 1123598821738675201, '2022-05-25 15:58:01', 1, 0), (1529371191901368323, 1529368938117279745, 'calendar.sync_calendar', '新建全年的生产日历', '/blade-cps/calendar/sync', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:58:01', 1123598821738675201, '2022-05-25 15:58:01', 1, 0), (1529371286793302018, 1491940085082005505, 'maintain_record.get_maintain_record', '查看保养记录', '/blade-tpm/maintain-record/get-maintain-record', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 15:58:24', 1123598821738675201, '2022-05-25 15:58:24', 1, 0), (1529371305160159233, 1529369011991556097, 'calendar.rename', '生产日历重命名', '/blade-cps/calendar/rename', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 15:58:28', 1123598821738675201, '2022-05-25 15:58:28', 1, 0), (1529371305164353537, 1529369011991556097, 'calendar.update_calendar', '编辑生产日历日期', '/blade-cps/calendar', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 15:58:28', 1123598821738675201, '2022-05-25 15:58:28', 1, 0), (1529371357991612417, 1491940085082005505, 'maintain_plan.query_maintain_plan_list', '通过设备类型查看保养计划(不分页)', '/blade-tpm/maintain-plan/list', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:58:41', 1123598821738675201, '2022-05-25 15:58:41', 1, 0), (1529371411833892865, 1529369081000439810, 'shift.delete_shift', '删除班次模型', '/blade-cps/shift/*', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 15:58:54', 1123598821738675201, '2022-05-25 15:58:54', 1, 0), (1529371509510844418, 1529369152597209090, 'shift.save_shift', '新建班次模型', '/blade-cps/shift', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 15:59:17', 1123598821738675201, '2022-05-25 15:59:17', 1, 0), (1529371580981784578, 1529369226563760129, 'shift.update_shift', '编辑版次模型', '/blade-cps/shift', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 15:59:34', 1123598821738675201, '2022-05-25 15:59:34', 1, 0), (1529371580985978881, 1529369226563760129, 'shift.update_shift_basic', '编辑版次模型基础信息', '/blade-cps/shift/updateBasic', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 15:59:34', 1123598821738675201, '2022-05-25 15:59:34', 1, 0), (1529371740302422017, 1491940085082005505, 'maintain_item.query_maintain_item_list', '查看保养项列表(不分页)', '/blade-cps/maintain-item/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:00:12', 1123598821738675201, '2022-05-25 16:00:12', 1, 0), (1529371808250146818, 1491940085082005505, 'material.list_by_spare_part', '查询备品备件物料', '/blade-cps/material/listBySparePart', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:00:28', 1123598821738675201, '2022-05-25 16:00:28', 1, 0), (1529371877410025473, 1491940085082005505, 'machine.create_machine', '新增机器', '/blade-cps/machine', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:00:45', 1123598821738675201, '2022-05-25 16:00:45', 1, 0), (1529372108591673346, 1529360183778553858, 'maintain_record.export_maintain_record', '导出', '/blade-tpm/maintain-record/export', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:01:40', 1123598821738675201, '2022-05-25 16:01:40', 1, 0), (1529372268616953857, 1529360293895811073, 'maintain_record.confirm_maintain_record', '确认保养记录', '/blade-tpm/maintain-record/perform-maintain-record', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:02:18', 1123598821738675201, '2022-05-25 16:02:18', 1, 0), (1529372599295881217, 1529360403274870785, 'maintain_item.query_maintain_item_list', '查看保养项列表(不分页)', '/blade-cps/maintain-item/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:03:37', 1123598821738675201, '2022-05-25 16:03:37', 1, 0), (1529372668543840257, 1529360403274870785, 'material.list_by_spare_part', '查询备品备件物料', '/blade-cps/material/listBySparePart', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:03:53', 1123598821738675201, '2022-05-25 16:03:53', 1, 0), (1529372755516928001, 1529360403274870785, 'maintain_record.get_maintain_record', '查看保养记录', '/blade-tpm/maintain-record/get-maintain-record', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:04:14', 1123598821738675201, '2022-05-25 16:04:14', 1, 0), (1529372879571857409, 1529360403274870785, 'maintain_plan.query_maintain_plan_list', '通过设备类型查看保养计划(不分页)', '/blade-tpm/maintain-plan/list', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:04:44', 1123598821738675201, '2022-05-25 16:04:44', 1, 0), (1529373191061843970, 1529360683882196994, 'maintain_record.edit_maintain_record', '编辑保养记录', '/blade-tpm/maintain-record/edit-maintain-record', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:05:58', 1123598821738675201, '2022-05-25 16:05:58', 1, 0), (1529373368510263297, 1491221708245405697, 'device_type.page_device_type', '分页查询机器类型', '/blade-cps/device-types/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:06:40', 1123598821738675201, '2022-05-25 16:06:40', 1, 0), (1529373521895960578, 1491221708245405697, 'check_record.page_check_record', '分页查询点检记录', '/blade-tpm/check-record/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:07:17', 1123598821738675201, '2022-05-25 16:07:17', 1, 0), (1529373521900154882, 1491221708245405697, 'check_record.update_check_record', '修改点检记录', '/blade-tpm/check-record', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 16:07:17', 1123598821738675201, '2022-05-25 16:07:17', 1, 0), (1529373650866614274, 1491221708245405697, 'check_item.list_check_item', '查询点检项', '/blade-cps/check-item/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:07:47', 1123598821738675201, '2022-05-25 16:07:47', 1, 0), (1529373752398131202, 1491221708245405697, 'device_type_check_project.list_device_check', '分页查询设备类型的点检项目', '/blade-cps/device-type-check-projects/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:08:12', 1123598821738675201, '2022-05-25 16:08:12', 1, 0), (1529373841766166530, 1491221708245405697, 'check_record.detail', '查询点检记录下的点检项和附件', '/blade-tpm/check-record/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:08:33', 1123598821738675201, '2022-05-25 16:08:33', 1, 0), (1529373969365282818, 1529361121171943425, 'machine.page_machine', '分页查询机器', '/blade-cps/machine/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:09:03', 1123598821738675201, '2022-05-25 16:09:03', 1, 0), (1529374090962350082, 1529361121171943425, 'device_type_check_project.list_device_check', '分页查询设备类型的点检项目', '/blade-cps/device-type-check-projects/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:09:32', 1123598821738675201, '2022-05-25 16:09:32', 1, 0), (1529374144339062785, 1529361121171943425, 'check_item.list_check_item', '查询点检项', '/blade-cps/check-item/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:09:45', 1123598821738675201, '2022-05-25 16:09:45', 1, 0), (1529374331233054722, 1529363184228446209, 'check_record.create_check_record', '添加点检记录', '/blade-tpm/check-record', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:10:30', 1123598821738675201, '2022-05-25 16:10:30', 1, 0), (1529374450976239618, 1529363284572975105, 'check_record.export_check_record', '导出点检项目', '/blade-tpm/check-record/excel/export', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:10:58', 1123598821738675201, '2022-05-25 16:10:58', 1, 0), (1529374586427092994, 1529363411266121729, 'check_record.delete_check_record', '删除点检项记录', '/blade-tpm/check-record', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 16:11:30', 1123598821738675201, '2022-05-25 16:11:30', 1, 0), (1529376700339531777, 1491221708245405697, 'check_record.remove_files', '删除点检记录下的附件', '/blade-tpm/check-record/files', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 16:19:54', 1123598821738675201, '2022-05-25 16:19:54', 1, 0), (1529376767268040706, 1519129245830651905, 'tray.get_detail', '托盘详情', '/blade-cps/tray/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:20:10', 1123598821738675201, '2022-05-25 16:20:10', 1, 0), (1529376767268040707, 1519129245830651905, 'tray.tooling_tree', '工装-托盘夹具-树形结构', '/blade-cps/tray/tooling-tree', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:20:10', 1123598821738675201, '2022-05-25 16:20:10', 1, 0), (1529376767268040708, 1519129245830651905, 'tray.tray_tree', '托盘-托盘组树', '/blade-cps/tray/tray-tree', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:20:10', 1123598821738675201, '2022-05-25 16:20:10', 1, 0), (1529376836817989633, 1519129245830651905, 'tray_surface.list_tray_surface', '托盘面列表', '/blade-cps/tray-surface/list/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:20:27', 1123598821738675201, '2022-05-25 16:20:27', 1, 0), (1529376950697537538, 1519129245830651905, 'tray_fixture.list_fixture', '托盘面-夹具列表', '/blade-cps/tray-fixture/list/fixture', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:20:54', 1123598821738675201, '2022-05-25 16:20:54', 1, 0), (1529377145254522882, 1529376249053392898, 'check_record.add_files', '增加点检记录下的附件', '/blade-tpm/check-record/files', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 16:21:41', 1123598821738675201, '2022-05-25 16:21:41', 1, 0), (1529377145258717185, 1529376249053392898, 'check_record.detail', '查询点检记录下的点检项和附件', '/blade-tpm/check-record/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:21:41', 1123598821738675201, '2022-05-25 16:21:41', 1, 0), (1529377287353348098, 1519129245830651905, 'tray.list_tool_appendix', '托盘下的工艺文件', '/blade-cps/tray/tool-appendix', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:22:14', 1123598821738675201, '2022-05-25 16:22:14', 1, 0), (1529377460435496961, 1491282994091601922, 'machine.page_machine', '分页查询机器', '/blade-cps/machine/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:22:56', 1123598821738675201, '2022-05-25 16:22:56', 1, 0), (1529377542715158530, 1519129245830651905, 'tray.tray_page', '分页查询托盘', '/blade-cps/tray/page/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:23:15', 1123598821738675201, '2022-05-25 16:23:15', 1, 0), (1529377584389763073, 1491282994091601922, 'device_type.page_device_type', '分页查询机器类型', '/blade-cps/device-types/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:23:25', 1123598821738675201, '2022-05-25 16:23:25', 1, 0), (1529377701121437697, 1491282994091601922, 'malfunction_type.get_code_and_record', '获取故障编码list', '/blade-cps/malfunction/malfunction-code-list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:23:53', 1123598821738675201, '2022-05-25 16:23:53', 1, 0), (1529379644451532803, 1491282994091601922, 'repair_apply.get_apply_code_list', '获取维修申请单号列表', '/blade-tpm/repair-apply/get-apply-code', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:31:36', 1123598821738675201, '2022-05-25 16:31:36', 1, 0), (1529379644455727105, 1491282994091601922, 'repair_apply.get_page_repair_apply', '查询分页', '/blade-tpm/repair-apply/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:31:36', 1123598821738675201, '2022-05-25 16:31:36', 1, 0), (1529379764433793025, 1491282994091601922, 'malfunction_type.page', '分页/查询故障类型列表', '/blade-cps/malfunction/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:32:05', 1123598821738675201, '2022-05-25 16:32:05', 1, 0), (1529379773229248514, 1519129245830651905, 'fixture.detail', '工装夹具详情', '/blade-cps/fixture/get/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:32:07', 1123598821738675201, '2022-05-25 16:32:07', 1, 0), (1529379773229248515, 1519129245830651905, 'fixture.page', '工装夹具分页', '/blade-cps/fixture/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:32:07', 1123598821738675201, '2022-05-25 16:32:07', 1, 0), (1529379828052996098, 1491282994091601922, 'material.list_by_spare_part', '查询备品备件物料', '/blade-cps/material/listBySparePart', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:32:20', 1123598821738675201, '2022-05-25 16:32:20', 1, 0), (1529379898542469122, 1529373447916826626, 'tray_fixture.export_template', '导出托盘-夹具模板', '/blade-cps/tray-fixture/excel/template', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:32:37', 1123598821738675201, '2022-05-25 16:32:37', 1, 0), (1529379898546663425, 1529373447916826626, 'tray_fixture.import_tray_fixture', '导入托盘-夹具', '/blade-cps/tray-fixture/excel/import', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:32:37', 1123598821738675201, '2022-05-25 16:32:37', 1, 0), (1529380274431799298, 1529373990328414210, 'tray_fixture.remove_face_fixture', '托盘面-夹具删除', '/blade-cps/tray-fixture', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 16:34:07', 1123598821738675201, '2022-05-25 16:34:07', 1, 0), (1529380343226773506, 1529374249859362818, 'tray_fixture.add_face_fixture', '托盘面-夹具新增', '/blade-cps/tray-fixture', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:34:23', 1123598821738675201, '2022-05-25 16:34:23', 1, 0), (1529380464299552769, 1529374249859362818, 'fixture.fixture_group_and_fixture_list', '夹具组夹具集合', '/blade-cps/fixture/fixtureGroupAndFixtureList', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:34:52', 1123598821738675201, '2022-05-25 16:34:52', 1, 0), (1529380561456410625, 1529374352737251329, 'tool_appendix.save_tool', '工装-托盘新增文件', '/blade-cps/tool-appendix', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:35:15', 1123598821738675201, '2022-05-25 16:35:15', 1, 0), (1529380589591801858, 1529374448799395842, 'tool_appendix.remove', '附件文件删除', '/blade-cps/tool-appendix/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 16:35:22', 1123598821738675201, '2022-05-25 16:35:22', 1, 0), (1529380752364351489, 1529374725875118082, 'tray.remove_tree', '删除托盘组', '/blade-cps/tray/remove-tree', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 16:36:01', 1123598821738675201, '2022-05-25 16:36:01', 1, 0), (1529380802930880513, 1529374836231450626, 'tray.save_tray', '新增托盘', '/blade-cps/tray/save', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:36:13', 1123598821738675201, '2022-05-25 16:36:13', 1, 0), (1529380905913626625, 1529363994689613826, 'repair_apply.export_product', '导出维修申请', '/blade-tpm/repair-apply/export-apply', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:36:37', 1123598821738675201, '2022-05-25 16:36:37', 1, 0), (1529380940931870722, 1529375362050371585, 'tray.export_template', '导出托盘模板', '/blade-cps/tray/excel/template', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:36:45', 1123598821738675201, '2022-05-25 16:36:45', 1, 0), (1529380940931870723, 1529375362050371585, 'tray.import_tray', '动态导入', '/blade-cps/tray/import-tray', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:36:45', 1123598821738675201, '2022-05-25 16:36:45', 1, 0), (1529381003485720578, 1529364113178701825, 'repair_apply.delete_apply', '维修申请记录(批量删除)', '/blade-tpm/repair-apply/delete-apply-ids', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:37:00', 1123598821738675201, '2022-05-25 16:37:00', 1, 0), (1529381008539856897, 1529375556041125889, 'tray.update_tray', '修改托盘', '/blade-cps/tray/update', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 16:37:02', 1123598821738675201, '2022-05-25 16:37:02', 1, 0), (1529381083982802946, 1529375683074011137, 'tray.remove_tray', '删除托盘', '/blade-cps/tray/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 16:37:20', 1123598821738675201, '2022-05-25 16:37:20', 1, 0), (1529381170435796993, 1529375809909764097, 'tray_surface.save_tray_fave', '新增托盘面', '/blade-cps/tray-surface/save', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:37:40', 1123598821738675201, '2022-05-25 16:37:40', 1, 0), (1529381189222084609, 1529375923067891714, 'tray_surface.update_tray_surface', '托盘面修改', '/blade-cps/tray-surface/update', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 16:37:45', 1123598821738675201, '2022-05-25 16:37:45', 1, 0), (1529381368465666049, 1529375988096380930, 'tray_surface.remove_face', '删除托盘下的托盘面', '/blade-cps/tray-surface/remove-face/*', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 16:38:27', 1123598821738675201, '2022-05-25 16:38:27', 1, 0), (1529381598196084738, 1529376116421111809, 'fixture.insert', '工装夹具新增', '/blade-cps/fixture/*/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:39:22', 1123598821738675201, '2022-05-25 16:39:22', 1, 0), (1529381632367079426, 1529376218330116098, 'fixture.update', '工装夹具修改', '/blade-cps/fixture/update', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 16:39:30', 1123598821738675201, '2022-05-25 16:39:30', 1, 0), (1529381728341143553, 1529376296767795202, 'fixture.remove', '工装夹具删除', '/blade-cps/fixture/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 16:39:53', 1123598821738675201, '2022-05-25 16:39:53', 1, 0), (1529381765376847874, 1529376361490100226, 'fixture.export_maintain_item_template', '导出夹具模板', '/blade-cps/fixture/export/template', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:40:02', 1123598821738675201, '2022-05-25 16:40:02', 1, 0), (1529381765381042177, 1529376361490100226, 'fixture.import_fixture', '导入夹具', '/blade-cps/fixture/import-fixture', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:40:02', 1123598821738675201, '2022-05-25 16:40:02', 1, 0), (1529381929583849474, 1529364227414765569, 'machine.page_machine', '分页查询机器', '/blade-cps/machine/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:40:41', 1123598821738675201, '2022-05-25 16:40:41', 1, 0), (1529382019371315201, 1529364227414765569, 'repair_apply.get_apply_code_list', '获取维修申请单号列表', '/blade-tpm/repair-apply/get-apply-code', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:41:03', 1123598821738675201, '2022-05-25 16:41:03', 1, 0), (1529382093904097281, 1529364227414765569, 'malfunction_type.page', '分页/查询故障类型列表', '/blade-cps/malfunction/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:41:20', 1123598821738675201, '2022-05-25 16:41:20', 1, 0), (1529382163525349377, 1529364227414765569, 'material.list_by_spare_part', '查询备品备件物料', '/blade-cps/material/listBySparePart', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:41:37', 1123598821738675201, '2022-05-25 16:41:37', 1, 0), (1529382279040675842, 1529364371539439617, 'repair_record.create_repair_apply', '新增维修记录', '/blade-tpm/repair-record/create-repair-record', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:42:05', 1123598821738675201, '2022-05-25 16:42:05', 1, 0), (1529382370979819521, 1529382006654185473, 'fixture.insert_file', '工装夹具添加附件', '/blade-cps/fixture/file', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:42:26', 1123598821738675201, '2022-05-25 16:42:26', 1, 0), (1529382435513380866, 1529382089873371137, 'tool_appendix.remove', '附件文件删除', '/blade-cps/tool-appendix/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 16:42:42', 1123598821738675201, '2022-05-25 16:42:42', 1, 0), (1529382526030655489, 1529364481107243009, 'repair_apply.implement_repair_apply', '确认维修申请单', '/blade-tpm/repair-apply/implement-repair-apply', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:43:03', 1123598821738675201, '2022-05-25 16:43:03', 1, 0), (1529382785683238914, 1529364706106486786, 'repair_apply.update_repair_apply', '编辑维修申请记录', '/blade-tpm/repair-apply/update-repair-apply', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:44:05', 1123598821738675201, '2022-05-25 16:44:05', 1, 0), (1529383571020525569, 1491959985118347265, 'device_type.page_device_type', '分页查询机器类型', '/blade-cps/device-types/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:47:13', 1123598821738675201, '2022-05-25 16:47:13', 1, 0), (1529383998231359490, 1491959985118347265, 'repair_record.get_apply_detail', '获取维修记录详情', '/blade-tpm/repair-record/get-record-detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:48:54', 1123598821738675201, '2022-05-25 16:48:54', 1, 0), (1529383998231359491, 1491959985118347265, 'repair_record.get_page_repair_apply', '维修记录查询分页', '/blade-tpm/repair-record/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:48:54', 1123598821738675201, '2022-05-25 16:48:54', 1, 0), (1529384099733516290, 1491959985118347265, 'machine.page_machine', '分页查询机器', '/blade-cps/machine/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:49:19', 1123598821738675201, '2022-05-25 16:49:19', 1, 0), (1529384165332430849, 1491959985118347265, 'repair_apply.get_apply_code_list', '获取维修申请单号列表', '/blade-tpm/repair-apply/get-apply-code', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:49:34', 1123598821738675201, '2022-05-25 16:49:34', 1, 0), (1529384226900619265, 1491959985118347265, 'malfunction_type.page', '分页/查询故障类型列表', '/blade-cps/malfunction/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:49:49', 1123598821738675201, '2022-05-25 16:49:49', 1, 0), (1529384293233537025, 1491959985118347265, 'material.list_by_spare_part', '查询备品备件物料', '/blade-cps/material/listBySparePart', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:50:05', 1123598821738675201, '2022-05-25 16:50:05', 1, 0), (1529384370974961666, 1529364982133633025, 'repair_record.export_record', '导出维修记录', '/blade-tpm/repair-record/export-record', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:50:23', 1123598821738675201, '2022-05-25 16:50:23', 1, 0), (1529384607495958530, 1529365082616573954, 'machine.page_machine', '分页查询机器', '/blade-cps/machine/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:51:20', 1123598821738675201, '2022-05-25 16:51:20', 1, 0), (1529384667348676610, 1529365082616573954, 'repair_apply.get_apply_code_list', '获取维修申请单号列表', '/blade-tpm/repair-apply/get-apply-code', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:51:34', 1123598821738675201, '2022-05-25 16:51:34', 1, 0), (1529384726337368066, 1529365082616573954, 'malfunction_type.page', '分页/查询故障类型列表', '/blade-cps/malfunction/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:51:48', 1123598821738675201, '2022-05-25 16:51:48', 1, 0), (1529384782713008130, 1529365082616573954, 'material.list_by_spare_part', '查询备品备件物料', '/blade-cps/material/listBySparePart', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:52:01', 1123598821738675201, '2022-05-25 16:52:01', 1, 0), (1529384852363620354, 1529365180515823617, 'repair_record.create_repair_apply', '新增维修记录', '/blade-tpm/repair-record/create-repair-record', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:52:18', 1123598821738675201, '2022-05-25 16:52:18', 1, 0), (1529385069167194113, 1529365311826898945, 'repair_record.get_apply_detail', '获取维修记录详情', '/blade-tpm/repair-record/get-record-detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:53:10', 1123598821738675201, '2022-05-25 16:53:10', 1, 0), (1529385135131013121, 1529365311826898945, 'machine.page_machine', '分页查询机器', '/blade-cps/machine/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:53:25', 1123598821738675201, '2022-05-25 16:53:25', 1, 0), (1529385202738999297, 1529365311826898945, 'repair_apply.get_apply_code_list', '获取维修申请单号列表', '/blade-tpm/repair-apply/get-apply-code', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:53:42', 1123598821738675201, '2022-05-25 16:53:42', 1, 0), (1529385291431751681, 1529365311826898945, 'malfunction_type.page', '分页/查询故障类型列表', '/blade-cps/malfunction/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:54:03', 1123598821738675201, '2022-05-25 16:54:03', 1, 0), (1529385347807391746, 1529365311826898945, 'material.list_by_spare_part', '查询备品备件物料', '/blade-cps/material/listBySparePart', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:54:16', 1123598821738675201, '2022-05-25 16:54:16', 1, 0), (1529385428157673474, 1529365436515168257, 'repair_record.update_repair_apply', '编辑维修记录', '/blade-tpm/repair-record/update-repair-record', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:54:35', 1123598821738675201, '2022-05-25 16:54:35', 1, 0), (1529385575096725506, 1529365541737672705, 'repair_record.implement_repair_record', '确认维修申请记录单', '/blade-tpm/repair-record/implement-repair-record', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:55:10', 1123598821738675201, '2022-05-25 16:55:10', 1, 0), (1529385929758683137, 1493780574536388609, 'notify_agent.get_page_confirmed_repair_record', '待确认维修记录(分页)', '/blade-tpm/notify-agent/confirmed-record-page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:56:35', 1123598821738675201, '2022-05-25 16:56:35', 1, 0), (1529385929762877442, 1493780574536388609, 'notify_agent.get_page_repair_apply', '今日维修申请(分页)', '/blade-tpm/notify-agent/today-apply-page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:56:35', 1123598821738675201, '2022-05-25 16:56:35', 1, 0), (1529385929762877443, 1493780574536388609, 'notify_agent.get_page_today_check_record', '今日点检(分页)', '/blade-tpm/notify-agent/today-check-record', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:56:35', 1123598821738675201, '2022-05-25 16:56:35', 1, 0), (1529385929762877444, 1493780574536388609, 'notify_agent.page_maintain_plan_confirmed', '分页查询保养计划待确认', '/blade-tpm/notify-agent/maintain-plan/page-to-confirmed', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:56:35', 1123598821738675201, '2022-05-25 16:56:35', 1, 0), (1529385929762877445, 1493780574536388609, 'notify_agent.page_maintain_plan_expire', '分页查询超期保养计划', '/blade-tpm/notify-agent/maintain-plan/page-expired', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:56:35', 1123598821738675201, '2022-05-25 16:56:35', 1, 0), (1529385929762877446, 1493780574536388609, 'notify_agent.page_maintain_plan_today', '分页查询今日保养计划', '/blade-tpm/notify-agent/maintain-plan/page-today', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:56:35', 1123598821738675201, '2022-05-25 16:56:35', 1, 0), (1529385929762877447, 1493780574536388609, 'notify_agent.page_maintain_plan_warning', '分页查询保养计划预警', '/blade-tpm/notify-agent/maintain-plan/page-warning', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 16:56:35', 1123598821738675201, '2022-05-25 16:56:35', 1, 0), (1529386038357602306, 1493780574536388609, 'maintain_plan.get_maintain_plan', '查看保养计划', '/blade-tpm/maintain-plan/get-maintain-plan', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 16:57:01', 1123598821738675201, '2022-05-25 16:57:01', 1, 0), (1529387694239461378, 1529366980518162434, 'repair_apply.implement_repair_apply', '确认维修申请单', '/blade-tpm/repair-apply/implement-repair-apply', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 17:03:36', 1123598821738675201, '2022-05-25 17:03:36', 1, 0), (1529390865565298689, 1491282994091601922, 'repair_apply.getetail', '获取维修申请和记录详情(包含对应附件)', '/blade-tpm/repair-apply/detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 17:16:12', 1123598821738675201, '2022-05-25 17:16:12', 1, 0), (1529390865569492993, 1491282994091601922, 'repair_apply.get_apply_detail', '获取维修申请详情(包含对应附件)', '/blade-tpm/repair-apply/get-apply-detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 17:16:12', 1123598821738675201, '2022-05-25 17:16:12', 1, 0), (1529391008955969537, 1529363896802947074, 'repair_apply.create_repair_apply', '新增维修申请记录', '/blade-tpm/repair-apply/create-repair-apply', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 17:16:46', 1123598821738675201, '2022-05-25 17:16:46', 1, 0), (1529391129353465858, 1529364227414765569, 'repair_apply.getetail', '获取维修申请和记录详情(包含对应附件)', '/blade-tpm/repair-apply/detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 17:17:15', 1123598821738675201, '2022-05-25 17:17:15', 1, 0), (1529391129353465859, 1529364227414765569, 'repair_apply.get_apply_detail', '获取维修申请详情(包含对应附件)', '/blade-tpm/repair-apply/get-apply-detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 17:17:15', 1123598821738675201, '2022-05-25 17:17:15', 1, 0), (1529391213499592706, 1529364579748884482, 'repair_apply.get_apply_detail', '获取维修申请详情(包含对应附件)', '/blade-tpm/repair-apply/get-apply-detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 17:17:35', 1123598821738675201, '2022-05-25 17:17:35', 1, 0), (1529391413823746050, 1529365311826898945, 'repair_apply.getetail', '获取维修申请和记录详情(包含对应附件)', '/blade-tpm/repair-apply/detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 17:18:22', 1123598821738675201, '2022-05-25 17:18:22', 1, 0), (1529391477107404801, 1522048292781465601, 'tray_storage.area_station_tree', '库区-库位树形结构', '/blade-cps/tray-storage/tree', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 17:18:38', 1123598821738675201, '2022-05-25 17:18:38', 1, 0), (1529391477111599105, 1522048292781465601, 'tray_storage.list_tray', '库位下的托盘列表', '/blade-cps/tray-storage/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 17:18:38', 1123598821738675201, '2022-05-25 17:18:38', 1, 0), (1529391619965399041, 1522048292781465601, 'warehouse_station.detail', '库区库位详情', '/blade-cps/warehouse-station/get/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 17:19:12', 1123598821738675201, '2022-05-25 17:19:12', 1, 0), (1529391960488357890, 1529384518543159297, 'tray_storage.add_tray_storage', '新增库位下的托盘', '/blade-cps/tray-storage', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 17:20:33', 1123598821738675201, '2022-05-25 17:20:33', 1, 0), (1529392005266747393, 1529384721660719106, 'tray_storage.remove_bind', '托盘存放删除', '/blade-cps/tray-storage', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 17:20:43', 1123598821738675201, '2022-05-25 17:20:43', 1, 0), (1529392085235347458, 1529384876564754433, 'tray_storage.export_template', '导出托盘存放模板', '/blade-cps/tray-storage/excel/template', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 17:21:03', 1123598821738675201, '2022-05-25 17:21:03', 1, 0), (1529392085239541762, 1529384876564754433, 'tray_storage.import_tray_storage', '导入托盘存放', '/blade-cps/tray-storage/excel/import', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 17:21:03', 1123598821738675201, '2022-05-25 17:21:03', 1, 0), (1529395322923462658, 1527115790989488129, 'tray_storage.area_station_tree', '库区-库位树形结构', '/blade-cps/tray-storage/tree', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 17:33:54', 1123598821738675201, '2022-05-25 17:33:54', 1, 0), (1529395440221368321, 1527115790989488129, 'material_storage.list_material', '库位下的物料列表', '/blade-cps/material-storage/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 17:34:22', 1123598821738675201, '2022-05-25 17:34:22', 1, 0), (1529395535138467842, 1527115790989488129, 'warehouse_station.detail', '库区库位详情', '/blade-cps/warehouse-station/get/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 17:34:45', 1123598821738675201, '2022-05-25 17:34:45', 1, 0), (1529395762629128194, 1527115790989488129, 'material_storage.material_not_bind', '未绑定的物料列表', '/blade-cps/material-storage/material/not-bind', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 17:35:39', 1123598821738675201, '2022-05-25 17:35:39', 1, 0), (1529397496248217602, 1529397280275116034, 'material_storage.remove', '物料存放删除', '/blade-cps/material-storage', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 17:42:33', 1123598821738675201, '2022-05-25 17:42:33', 1, 0), (1529397546152046593, 1529397357047656450, 'material_storage.export_template', '导出物料存放模板', '/blade-cps/material-storage/excel/template', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 17:42:44', 1123598821738675201, '2022-05-25 17:42:44', 1, 0), (1529397546156240898, 1529397357047656450, 'material_storage.import_material_storage', '导入物料存放', '/blade-cps/material-storage/excel/import', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 17:42:44', 1123598821738675201, '2022-05-25 17:42:44', 1, 0), (1529419096938983426, 1526040185400328193, 'stock_in_type.page', '入库类型分页', '/blade-cps/stock-in-type/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:08:23', 1123598821738675201, '2022-05-25 19:08:23', 1, 0), (1529419145601298433, 1526040185400328193, 'stock_out_type.page', '出库类型分页', '/blade-cps/stock-out-type/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:08:34', 1123598821738675201, '2022-05-25 19:08:34', 1, 0), (1529419255538200577, 1529389913919664130, 'stock_out_type.insert', '出库类型新增', '/blade-cps/stock-out-type/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:09:00', 1123598821738675201, '2022-05-25 19:09:00', 1, 0), (1529419334206566401, 1529389988997705729, 'stock_out_type.remove', '出库类型删除', '/blade-cps/stock-out-type/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 19:09:19', 1123598821738675201, '2022-05-25 19:09:19', 1, 0), (1529419689367646210, 1529390068181970945, 'stock_in_type.insert', '入库类型新增', '/blade-cps/stock-in-type/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:10:44', 1123598821738675201, '2022-05-25 19:10:44', 1, 0), (1529419720627793921, 1529390151795421186, 'stock_in_type.remove', '入库类型删除', '/blade-cps/stock-in-type/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 19:10:51', 1123598821738675201, '2022-05-25 19:10:51', 1, 0), (1529419860906291202, 1503546274154123265, 'warehouse_area.tree', '树形结构', '/blade-cps/warehouse-area/tree', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:11:25', 1123598821738675201, '2022-05-25 19:11:25', 1, 0), (1529419931953606658, 1503546274154123265, 'warehouse_station.page', '库区库位分页', '/blade-cps/warehouse-station/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:11:42', 1123598821738675201, '2022-05-25 19:11:42', 1, 0), (1529420006004043778, 1503546274154123265, 'warehouse_grid.list_by_station_id', '库区货格列表', '/blade-cps/warehouse-grid/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:11:59', 1123598821738675201, '2022-05-25 19:11:59', 1, 0), (1529420115521515521, 1529386664294559745, 'warehouse_area.insert', '库区新增', '/blade-cps/warehouse-area/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:12:25', 1123598821738675201, '2022-05-25 19:12:25', 1, 0), (1529420199982215170, 1529386927948509185, 'warehouse_area.update', '库区修改', '/blade-cps/warehouse-area/update', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 19:12:46', 1123598821738675201, '2022-05-25 19:12:46', 1, 0), (1529420282115076098, 1529388782367748097, 'warehouse_area.remove', '库区删除', '/blade-cps/warehouse-area/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 19:13:05', 1123598821738675201, '2022-05-25 19:13:05', 1, 0), (1529420410582413314, 1529388903142731778, 'warehouse_station.export_template', '导出模板', '/blade-cps/warehouse-station/export-template', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:13:36', 1123598821738675201, '2022-05-25 19:13:36', 1, 0), (1529420493809987585, 1529389071569203202, 'warehouse_station.import_station', '导入库位', '/blade-cps/warehouse-station/import-station', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:13:56', 1123598821738675201, '2022-05-25 19:13:56', 1, 0), (1529420572478353409, 1529389149553897473, 'warehouse_station.export_station', '导出库位', '/blade-cps/warehouse-station/export-station', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:14:14', 1123598821738675201, '2022-05-25 19:14:14', 1, 0), (1529420650605654018, 1529389242684223489, 'warehouse_station.insert', '库区库位新增', '/blade-cps/warehouse-station/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:14:33', 1123598821738675201, '2022-05-25 19:14:33', 1, 0), (1529420738887364610, 1529389331506999297, 'warehouse_station.update', '库区库位修改', '/blade-cps/warehouse-station/update', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 19:14:54', 1123598821738675201, '2022-05-25 19:14:54', 1, 0), (1529420799969013762, 1529389425643958273, 'warehouse_station.remove_by_ids', '库区库位批量删除', '/blade-cps/warehouse-station/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 19:15:09', 1123598821738675201, '2022-05-25 19:15:09', 1, 0), (1529420888682737665, 1529389544124657665, 'warehouse_grid.insert', '库区货格新增', '/blade-cps/warehouse-grid/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:15:30', 1123598821738675201, '2022-05-25 19:15:30', 1, 0), (1529420928490876930, 1529389636139298818, 'warehouse_grid.update', '库区货格修改', '/blade-cps/warehouse-grid/update', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 19:15:39', 1123598821738675201, '2022-05-25 19:15:39', 1, 0), (1529421073009815553, 1529389768754802689, 'warehouse_grid.remove', '库区货格删除', '/blade-cps/warehouse-grid/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 19:16:14', 1123598821738675201, '2022-05-25 19:16:14', 1, 0), (1529421869763997698, 1470274120439566338, 'post.page', '分页', '/blade-system/post/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:19:24', 1123598821738675201, '2022-05-25 19:19:24', 1, 0), (1529421933148319746, 1470274120439566338, 'employee.list', '分页', '/blade-cps/employee/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:19:39', 1123598821738675201, '2022-05-25 19:19:39', 1, 0), (1529423392111800322, 1529365139944321026, 'employee.submit', '新增或更改员工信息', '/blade-cps/employee/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:25:27', 1123598821738675201, '2022-05-25 19:25:27', 1, 0), (1529423569472139265, 1529388585562615809, 'employee.detail', '详情', '/blade-cps/employee/detail/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:26:09', 1123598821738675201, '2022-05-25 19:26:09', 1, 0), (1529423569476333569, 1529388585562615809, 'employee.list', '分页', '/blade-cps/employee/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:26:09', 1123598821738675201, '2022-05-25 19:26:09', 1, 0), (1529423569476333570, 1529388585562615809, 'employee.submit', '新增或更改员工信息', '/blade-cps/employee/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:26:09', 1123598821738675201, '2022-05-25 19:26:09', 1, 0), (1529423733599449089, 1529365357532229633, 'employee.change_organization', '部门调整', '/blade-cps/employee/change-organization', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 19:26:48', 1123598821738675201, '2022-05-25 19:26:48', 1, 0), (1529423818148229121, 1529365693886050306, 'employee.export_template', '导出模板', '/blade-cps/employee/export-template', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:27:08', 1123598821738675201, '2022-05-25 19:27:08', 1, 0), (1529423818156617730, 1529365693886050306, 'employee.import_employee', '导入员工', '/blade-cps/employee/import-employee', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:27:08', 1123598821738675201, '2022-05-25 19:27:08', 1, 0), (1529423853359411202, 1529365878473175041, 'employee.export_employee', '导出员工', '/blade-cps/employee/export-employee', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:27:17', 1123598821738675201, '2022-05-25 19:27:17', 1, 0), (1529423920757682177, 1529366192353914882, 'employee.remove', '批量删除员工', '/blade-cps/employee/remove', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:27:33', 1123598821738675201, '2022-05-25 19:27:33', 1, 0), (1529424153650606082, 1529366428614864897, 'post.submit', '新增或修改', '/blade-system/post/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:28:28', 1123598821738675201, '2022-05-25 19:28:28', 1, 0), (1529424340758507521, 1529388788273328129, 'employee.list', '分页', '/blade-cps/employee/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:29:13', 1123598821738675201, '2022-05-25 19:29:13', 1, 0), (1529424457406296066, 1529388788273328129, 'post.detail', '详情', '/blade-system/post/detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:29:41', 1123598821738675201, '2022-05-25 19:29:41', 1, 0), (1529424457410490370, 1529388788273328129, 'post.submit', '新增或修改', '/blade-system/post/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:29:41', 1123598821738675201, '2022-05-25 19:29:41', 1, 0), (1529424516143329281, 1529366730336317442, 'post.export_template', '导出模板', '/blade-system/post/export-template', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:29:55', 1123598821738675201, '2022-05-25 19:29:55', 1, 0), (1529424516147523586, 1529366730336317442, 'post.import_post', '导入岗位', '/blade-system/post/import-post', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:29:55', 1123598821738675201, '2022-05-25 19:29:55', 1, 0), (1529424568291110913, 1529366993159794690, 'post.export_post', '导出岗位', '/blade-system/post/export-post', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:30:07', 1123598821738675201, '2022-05-25 19:30:07', 1, 0), (1529424630937235457, 1529367974333329410, 'post.remove', '逻辑删除', '/blade-system/post/remove', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:30:22', 1123598821738675201, '2022-05-25 19:30:22', 1, 0), (1529427871183876097, 1529368269578776577, 'organization.export_template', '导出模板', '/blade-cps/organization/export-template', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:43:15', 1123598821738675201, '2022-05-25 19:43:15', 1, 0), (1529427911004598273, 1529368440421167106, 'organization.export_organization', '导出组织', '/blade-cps/organization/export-organization', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:43:24', 1123598821738675201, '2022-05-25 19:43:24', 1, 0), (1529428482059087873, 1471285883018977281, 'calendar.list_calendars', '生产日历列表', '/blade-cps/calendar/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:45:40', 1123598821738675201, '2022-05-25 19:45:40', 1, 0), (1529428561188827137, 1471285883018977281, 'machine.list', '查询机器集合', '/blade-cps/machine/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:45:59', 1123598821738675201, '2022-05-25 19:45:59', 1, 0), (1529428771986157569, 1471285883018977281, 'workstation.get', '获取工位信息', '/blade-cps/workstation/get', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:46:49', 1123598821738675201, '2022-05-25 19:46:49', 1, 0), (1529428771990351874, 1471285883018977281, 'workstation.page', '查询工位 分页', '/blade-cps/workstation/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:46:49', 1123598821738675201, '2022-05-25 19:46:49', 1, 0), (1529428900591906817, 1471285883018977281, 'workstation.list_dmp_variables_by_workstation_id', '根据工位id获取采集项', '/blade-cps/workstation/listDmpVariablesByWorkstationId', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:47:20', 1123598821738675201, '2022-05-25 19:47:20', 1, 0), (1529429060164202498, 1471285883018977281, 'workstation_wcs.list_by_workstation_id', '根据工位id查询工况参数', '/blade-cps/workstation-wcs/getWcsByWorkstationId', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:47:58', 1123598821738675201, '2022-05-25 19:47:58', 1, 0), (1529429336006799361, 1471285883018977281, 'workstation_workbench.list_workbench', '遍历工位工作台', '/blade-cps/workstation-workbench/listWorkbench', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:49:04', 1123598821738675201, '2022-05-25 19:49:04', 1, 0), (1529429627410264066, 1529364933337100289, 'calendar.list_calendars', '生产日历列表', '/blade-cps/calendar/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:50:13', 1123598821738675201, '2022-05-25 19:50:13', 1, 0), (1529429701557170178, 1529364933337100289, 'machine.list', '查询机器集合', '/blade-cps/machine/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:50:31', 1123598821738675201, '2022-05-25 19:50:31', 1, 0), (1529429841554649090, 1529364933337100289, 'workstation.submit', '新增或更改工位信息', '/blade-cps/workstation/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:51:04', 1123598821738675201, '2022-05-25 19:51:04', 1, 0), (1529429940770910210, 1529365091202314242, 'workstation.change_workstation_group', '改变工位组', '/blade-cps/workstation/changeWorkstationGroup', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 19:51:28', 1123598821738675201, '2022-05-25 19:51:28', 1, 0), (1529430176071364609, 1529365291329335297, 'workstation_wcs.batch_save', '批量编辑工位参数信息', '/blade-cps/workstation-wcs/batchSave', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:52:24', 1123598821738675201, '2022-05-25 19:52:24', 1, 0), (1529430176071364610, 1529365291329335297, 'workstation_wcs.list_wcs_setting', '列表查询工况参数设置', '/blade-cps/workstation-wcs/listWcsSetting', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:52:24', 1123598821738675201, '2022-05-25 19:52:24', 1, 0), (1529430649964802049, 1529365863575007233, 'workstation.export_template', '导出模板', '/blade-cps/workstation/export-template', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:54:17', 1123598821738675201, '2022-05-25 19:54:17', 1, 0), (1529430649968996354, 1529365863575007233, 'workstation.import_workstation', '导入工位', '/blade-cps/workstation/import-workstation', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:54:17', 1123598821738675201, '2022-05-25 19:54:17', 1, 0), (1529430721720954882, 1529365958219476993, 'workstation.submit', '新增或更改工位信息', '/blade-cps/workstation/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:54:34', 1123598821738675201, '2022-05-25 19:54:34', 1, 0), (1529430801068797954, 1529366034983628802, 'workstation.change_calendar_code', '改变工位的生产日历', '/blade-cps/workstation/changeCalendarCode', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 19:54:53', 1123598821738675201, '2022-05-25 19:54:53', 1, 0), (1529431336383623170, 1529366159940333569, 'workstation.list_dmp_variables_by_workstation_id', '根据工位id获取采集项', '/blade-cps/workstation/listDmpVariablesByWorkstationId', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 19:57:01', 1123598821738675201, '2022-05-25 19:57:01', 1, 0), (1529431432512876545, 1529366159940333569, 'workstation_wcs.save', '新增或更改工况参数信息', '/blade-cps/workstation-wcs/save', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:57:24', 1123598821738675201, '2022-05-25 19:57:24', 1, 0), (1529431510342381569, 1529366282334318593, 'workstation_workbench.save_workbench', '增加工位工作台信息', '/blade-cps/workstation-workbench/saveWorkbench', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:57:42', 1123598821738675201, '2022-05-25 19:57:42', 1, 0), (1529431549148082178, 1529366378954305537, 'workstation_workbench.update_workbench', '修改工位工作台信息', '/blade-cps/workstation-workbench/updateWorkbench', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:57:51', 1123598821738675201, '2022-05-25 19:57:51', 1, 0), (1529431905164800002, 1529356035871944706, 'maintain_plan.create_maintain_plan_auto', '生成周期保养计划', '/blade-tpm/maintain-plan/create-maintain-plan-auto', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 19:59:16', 1123598821738675201, '2022-05-25 19:59:16', 1, 0), (1529432232672833538, 1529356338205765633, 'maintain_plan.create_maintain_plan', '添加临时保养计划', '/blade-tpm/maintain-plan/create-maintain-plan', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:00:34', 1123598821738675201, '2022-05-25 20:00:34', 1, 0), (1529432420791562241, 1529356760790282242, 'maintain_record.create_maintain_record', '添加保养记录', '/blade-tpm/maintain-record/create-maintain-record', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:01:19', 1123598821738675201, '2022-05-25 20:01:19', 1, 0), (1529432616573284354, 1529357546177900545, 'maintain_plan.edit_maintain_plan', '编辑保养计划', '/blade-tpm/maintain-plan/edit-maintain-plan', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:02:06', 1123598821738675201, '2022-05-25 20:02:06', 1, 0), (1529433051170287617, 1529360403274870785, 'maintain_record.edit_maintain_record', '编辑保养记录', '/blade-tpm/maintain-record/edit-maintain-record', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:03:50', 1123598821738675201, '2022-05-25 20:03:50', 1, 0), (1529433390103605249, 1529361121171943425, 'check_record.create_check_record', '添加点检记录', '/blade-tpm/check-record', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:05:10', 1123598821738675201, '2022-05-25 20:05:10', 1, 0), (1529434005189898241, 1529363790850633730, 'repair_apply.create_repair_apply', '新增维修申请记录', '/blade-tpm/repair-apply/create-repair-apply', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:07:37', 1123598821738675201, '2022-05-25 20:07:37', 1, 0), (1529434139332128769, 1529364227414765569, 'repair_apply.create_repair_apply', '新增维修申请记录', '/blade-tpm/repair-apply/create-repair-apply', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:08:09', 1123598821738675201, '2022-05-25 20:08:09', 1, 0), (1529434520669859841, 1529364579748884482, 'repair_apply.update_repair_apply', '编辑维修申请记录', '/blade-tpm/repair-apply/update-repair-apply', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:09:40', 1123598821738675201, '2022-05-25 20:09:40', 1, 0), (1529434881677799426, 1529365082616573954, 'repair_record.create_repair_apply', '新增维修记录', '/blade-tpm/repair-record/create-repair-record', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:11:06', 1123598821738675201, '2022-05-25 20:11:06', 1, 0), (1529434943883522050, 1529365311826898945, 'repair_record.update_repair_apply', '编辑维修记录', '/blade-tpm/repair-record/update-repair-record', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:11:21', 1123598821738675201, '2022-05-25 20:11:21', 1, 0), (1529435005921472513, 1529366446063169537, 'workstation_workbench.delete_workbench', '删除工位工作台信息', '/blade-cps/workstation-workbench/deleteWorkbench', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:11:36', 1123598821738675201, '2022-05-25 20:11:36', 1, 0), (1529435819415121921, 1529366713466826753, 'workstation.delete_group', '删除工位组', '/blade-cps/workstation/deleteGroup', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 20:14:50', 1123598821738675201, '2022-05-25 20:14:50', 1, 0), (1529436184936132610, 1522390934839029761, 'process.get', '获取工序信息', '/blade-cps/process/get', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:16:17', 1123598821738675201, '2022-05-25 20:16:17', 1, 0), (1529436184936132611, 1522390934839029761, 'process.page', '查询工序-分页', '/blade-cps/process/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:16:17', 1123598821738675201, '2022-05-25 20:16:17', 1, 0), (1529436269078065153, 1522390934839029761, 'process_association.page', '查询工序业务关联信息', '/blade-cps/process-association/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:16:37', 1123598821738675201, '2022-05-25 20:16:37', 1, 0), (1529436426817449986, 1522390934839029761, 'workstation.page', '查询工位 分页', '/blade-cps/workstation/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:17:14', 1123598821738675201, '2022-05-25 20:17:14', 1, 0), (1529436470777950209, 1522390934839029761, 'supplier.page', '分页查询供应商', '/blade-cps/supplier/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:17:25', 1123598821738675201, '2022-05-25 20:17:25', 1, 0), (1529436563232993281, 1522390934839029761, 'warehouse_area.page', '库区分页', '/blade-cps/warehouse-area/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:17:47', 1123598821738675201, '2022-05-25 20:17:47', 1, 0), (1529436642387898370, 1529367809237135361, 'process.save', '新增或更改工序信息', '/blade-cps/process/save', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:18:06', 1123598821738675201, '2022-05-25 20:18:06', 1, 0), (1529436840627482625, 1529367885154037761, 'process.export_template', '导出模板', '/blade-cps/process/export-template', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:18:53', 1123598821738675201, '2022-05-25 20:18:53', 1, 0), (1529436840627482626, 1529367885154037761, 'process.import_process', '导入工序', '/blade-cps/process/import-process', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:18:53', 1123598821738675201, '2022-05-25 20:18:53', 1, 0), (1529437031791276033, 1529367955769339905, 'process.export_process', '导出工序', '/blade-cps/process/export-process', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:19:39', 1123598821738675201, '2022-05-25 20:19:39', 1, 0), (1529437096060596226, 1529368019027832834, 'process.delete', '删除工序', '/blade-cps/process/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 20:19:54', 1123598821738675201, '2022-05-25 20:19:54', 1, 0), (1529437181997690881, 1529368106030280705, 'process_association.save', '保存工序关联信息', '/blade-cps/process-association/save', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:20:14', 1123598821738675201, '2022-05-25 20:20:14', 1, 0), (1529437198779101186, 1529368188133781506, 'process_association.save', '保存工序关联信息', '/blade-cps/process-association/save', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:20:18', 1123598821738675201, '2022-05-25 20:20:18', 1, 0), (1529437532607950849, 1485491717025140738, 'device_type.page_device_type', '分页查询机器类型', '/blade-cps/device-types/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:21:38', 1123598821738675201, '2022-05-25 20:21:38', 1, 0), (1529437594612346882, 1485491717025140738, 'employee.list', '分页', '/blade-cps/employee/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:21:53', 1123598821738675201, '2022-05-25 20:21:53', 1, 0), (1529437781757997057, 1485491717025140738, 'machine.detail', '详情', '/blade-cps/machine/detail/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:22:37', 1123598821738675201, '2022-05-25 20:22:37', 1, 0), (1529437781757997058, 1485491717025140738, 'machine.page_machine', '分页查询机器', '/blade-cps/machine/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:22:37', 1123598821738675201, '2022-05-25 20:22:37', 1, 0), (1529437896837115906, 1529366837387538434, 'device_type.page_device_type', '分页查询机器类型', '/blade-cps/device-types/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:23:05', 1123598821738675201, '2022-05-25 20:23:05', 1, 0), (1529437954286497794, 1529366837387538434, 'employee.list', '分页', '/blade-cps/employee/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:23:19', 1123598821738675201, '2022-05-25 20:23:19', 1, 0), (1529438047798505474, 1529366837387538434, 'machine.create_machine', '新增机器', '/blade-cps/machine', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:23:41', 1123598821738675201, '2022-05-25 20:23:41', 1, 0), (1529438047802699778, 1529366837387538434, 'machine.detail', '详情', '/blade-cps/machine/detail/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:23:41', 1123598821738675201, '2022-05-25 20:23:41', 1, 0), (1529438047802699779, 1529366837387538434, 'machine.page_machine', '分页查询机器', '/blade-cps/machine/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:23:41', 1123598821738675201, '2022-05-25 20:23:41', 1, 0), (1529438159845142530, 1529366993180766210, 'machine.detail', '详情', '/blade-cps/machine/detail/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:24:08', 1123598821738675201, '2022-05-25 20:24:08', 1, 0), (1529438159849336834, 1529366993180766210, 'machine.page_machine', '分页查询机器', '/blade-cps/machine/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:24:08', 1123598821738675201, '2022-05-25 20:24:08', 1, 0), (1529438159849336835, 1529366993180766210, 'machine.update_machine', '修改机器', '/blade-cps/machine', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 20:24:08', 1123598821738675201, '2022-05-25 20:24:08', 1, 0), (1529438234860269570, 1529366993180766210, 'device_type.page_device_type', '分页查询机器类型', '/blade-cps/device-types/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:24:25', 1123598821738675201, '2022-05-25 20:24:25', 1, 0), (1529438296571064322, 1529366993180766210, 'employee.list', '分页', '/blade-cps/employee/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:24:40', 1123598821738675201, '2022-05-25 20:24:40', 1, 0), (1529438432571371522, 1529367087372251138, 'machine.detail', '详情', '/blade-cps/machine/detail/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:25:13', 1123598821738675201, '2022-05-25 20:25:13', 1, 0), (1529438432575565825, 1529367087372251138, 'machine.export_template_check_project', '导出机器模板', '/blade-cps/machine/excel/template', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:25:13', 1123598821738675201, '2022-05-25 20:25:13', 1, 0), (1529438432575565826, 1529367087372251138, 'machine.import_machine', '导入机器', '/blade-cps/machine/excel/import', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:25:13', 1123598821738675201, '2022-05-25 20:25:13', 1, 0), (1529438432575565827, 1529367087372251138, 'machine.page_machine', '分页查询机器', '/blade-cps/machine/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:25:13', 1123598821738675201, '2022-05-25 20:25:13', 1, 0), (1529438513693405185, 1529367087372251138, 'device_type.page_device_type', '分页查询机器类型', '/blade-cps/device-types/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:25:32', 1123598821738675201, '2022-05-25 20:25:32', 1, 0), (1529438559579090945, 1529367087372251138, 'employee.list', '分页', '/blade-cps/employee/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:25:43', 1123598821738675201, '2022-05-25 20:25:43', 1, 0), (1529438606244917249, 1529367232428060673, 'machine.export_machine', '导出机器', '/blade-cps/machine/excel/export', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:25:54', 1123598821738675201, '2022-05-25 20:25:54', 1, 0), (1529438637547008001, 1529367315957624833, 'machine.remove', '删除', '/blade-cps/machine', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 20:26:01', 1123598821738675201, '2022-05-25 20:26:01', 1, 0), (1529439194932260865, 1503621096733990913, 'workstation_wcs.list_wcs_setting', '列表查询工况参数设置', '/blade-cps/workstation-wcs/listWcsSetting', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:28:14', 1123598821738675201, '2022-05-25 20:28:14', 1, 0), (1529439317166862338, 1529370928301944833, 'workstation_wcs.update', '更改工况参数信息', '/blade-cps/workstation-wcs/update', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-25 20:28:43', 1123598821738675201, '2022-05-25 20:28:43', 1, 0), (1529439534297591809, 1529370995448557569, 'workstation_wcs.delete_by_workstation_id_list', '删除工况参数信息', '/blade-cps/workstation-wcs', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 20:29:35', 1123598821738675201, '2022-05-25 20:29:35', 1, 0), (1529439809448128513, 1483642077594710017, 'maintain_item.query_maintain_item_list_page', '查看保养项列表(分页)', '/blade-cps/maintain-item/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:30:41', 1123598821738675201, '2022-05-25 20:30:41', 1, 0), (1529439860761243649, 1483642077594710017, 'check_project.page_check_project', '分页查询点检项目', '/blade-cps/check-project/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:30:53', 1123598821738675201, '2022-05-25 20:30:53', 1, 0), (1529439933603721217, 1483642077594710017, 'check_item.list_check_item', '查询点检项', '/blade-cps/check-item/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:31:10', 1123598821738675201, '2022-05-25 20:31:10', 1, 0), (1529440050914209794, 1483642077594710017, 'malfunction_type.page', '分页/查询故障类型列表', '/blade-cps/malfunction/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:31:38', 1123598821738675201, '2022-05-25 20:31:38', 1, 0), (1529440140303216642, 1483642077594710017, 'device_type.page_device_type', '分页查询机器类型', '/blade-cps/device-types/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:32:00', 1123598821738675201, '2022-05-25 20:32:00', 1, 0), (1529440182980259841, 1483642077594710017, 'device_type_check_project.list_device_check', '分页查询设备类型的点检项目', '/blade-cps/device-type-check-projects/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:32:10', 1123598821738675201, '2022-05-25 20:32:10', 1, 0), (1529440291864391681, 1483642077594710017, 'maintain_project.query_maintain_project_list', '通过机器类型查看保养项目列表(不分页)', '/blade-cps/maintain-project/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:32:36', 1123598821738675201, '2022-05-25 20:32:36', 1, 0), (1529440418737893377, 1483642077594710017, 'maintain_project_item.query_maintain_project_item_list', '通过保养项目ID查看保养项列表(不分页)', '/blade-cps/maintain-project-item/item-list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:33:06', 1123598821738675201, '2022-05-25 20:33:06', 1, 0), (1529440489260920833, 1529368399618977793, 'maintain_item.create_maintain_item', '添加保养项', '/blade-cps/maintain-item/create-maintain-item', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:33:23', 1123598821738675201, '2022-05-25 20:33:23', 1, 0), (1529440579832721410, 1529368462378348545, 'maintain_item.edit_maintain_item', '编辑保养项', '/blade-cps/maintain-item/edit-maintain-item', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:33:45', 1123598821738675201, '2022-05-25 20:33:45', 1, 0), (1529440632316047361, 1529368531353677826, 'maintain_item.export_maintain_item_template', '导出保养项模板', '/blade-cps/maintain-item/export/template', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:33:57', 1123598821738675201, '2022-05-25 20:33:57', 1, 0), (1529440632320241665, 1529368531353677826, 'maintain_item.import_maintain_item', '动态导入', '/blade-cps/maintain-item/import-maintain-item', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:33:57', 1123598821738675201, '2022-05-25 20:33:57', 1, 0), (1529440716969684993, 1529368588253605890, 'maintain_item.export_maintain_item_template', '导出保养项模板', '/blade-cps/maintain-item/export/template', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:34:17', 1123598821738675201, '2022-05-25 20:34:17', 1, 0), (1529440736158625794, 1529368696349208577, 'maintain_item.delete_maintain_item', '删除保养项', '/blade-cps/maintain-item/delete-maintain-item', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:34:22', 1123598821738675201, '2022-05-25 20:34:22', 1, 0), (1529440884804759553, 1529368775957098498, 'check_project.create_check_project', '新增点检项目', '/blade-cps/check-project', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:34:57', 1123598821738675201, '2022-05-25 20:34:57', 1, 0), (1529440968585981953, 1529368912016125954, 'check_project.export_template_check_project', '导出点检项目模板', '/blade-cps/check-project/excel/template', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:35:17', 1123598821738675201, '2022-05-25 20:35:17', 1, 0), (1529440968590176257, 1529368912016125954, 'check_project.import_check_project', '导入点检项目', '/blade-cps/check-project/excel/import', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:35:17', 1123598821738675201, '2022-05-25 20:35:17', 1, 0), (1529441019756490754, 1529368973739503617, 'check_project.export_check_project', '导出点检项目', '/blade-cps/check-project/excel/export', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:35:29', 1123598821738675201, '2022-05-25 20:35:29', 1, 0), (1529441256432676865, 1529369417446535170, 'check_item.create_check_item', '新增点检项', '/blade-cps/check-item', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:36:26', 1123598821738675201, '2022-05-25 20:36:26', 1, 0), (1529441411185717249, 1529369521544966145, 'malfunction_type.save', '新增或更改故障类型', '/blade-cps/malfunction/save', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:37:03', 1123598821738675201, '2022-05-25 20:37:03', 1, 0), (1529441487631101953, 1529369703766503426, 'malfunction_type.export_template', '导出模板', '/blade-cps/malfunction/export-template', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:37:21', 1123598821738675201, '2022-05-25 20:37:21', 1, 0), (1529441487635296258, 1529369703766503426, 'malfunction_type.import_malfunction_type', '导入故障类型', '/blade-cps/malfunction/import-malfunctionType', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:37:21', 1123598821738675201, '2022-05-25 20:37:21', 1, 0), (1529441518505373697, 1529369787849715714, 'malfunction_type.export_malfunction_type', '导出故障类型', '/blade-cps/malfunction/export-malfunctionType', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:37:28', 1123598821738675201, '2022-05-25 20:37:28', 1, 0), (1529442096233000961, 1529369853738037249, 'malfunction_type.delete', '批量删除故障类型', '/blade-cps/malfunction/delete', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 20:39:46', 1123598821738675201, '2022-05-25 20:39:46', 1, 0), (1529442179758370818, 1529369917344657409, 'device_type.create_device_type', '新增机器类型', '/blade-cps/device-types', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:40:06', 1123598821738675201, '2022-05-25 20:40:06', 1, 0), (1529442225786662914, 1529369976190742529, 'device_type.export_maintain_item_template', '导出机器类型模板', '/blade-cps/device-types/export/template', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:40:17', 1123598821738675201, '2022-05-25 20:40:17', 1, 0), (1529442225790857217, 1529369976190742529, 'device_type.import_device_type', '导入机器类型', '/blade-cps/device-types/excel/import', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:40:17', 1123598821738675201, '2022-05-25 20:40:17', 1, 0), (1529444069401374721, 1529370059997130753, 'device_type.export', '导出机器类型', '/blade-cps/device-types/excel/export', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:47:36', 1123598821738675201, '2022-05-25 20:47:36', 1, 0), (1529444138703859713, 1529370137914716162, 'device_type.delete_device_type_by_ids', '删除机器类型', '/blade-cps/device-types', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 20:47:53', 1123598821738675201, '2022-05-25 20:47:53', 1, 0), (1529444916143271937, 1529370302885081090, 'maintain_project.edit_maintain_project', '编辑保养项目', '/blade-cps/maintain-project/edit-maintain-project', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:50:58', 1123598821738675201, '2022-05-25 20:50:58', 1, 0), (1529444993368797185, 1529370193631850497, 'maintain_project.create_maintain_project', '添加保养项目', '/blade-cps/maintain-project/create-maintain-project', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:51:17', 1123598821738675201, '2022-05-25 20:51:17', 1, 0), (1529445179029663745, 1529370368333000705, 'maintain_item.delete_maintain_item', '删除保养项', '/blade-cps/maintain-item/delete-maintain-item', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:52:01', 1123598821738675201, '2022-05-25 20:52:01', 1, 0), (1529445450027839490, 1529370433348907010, 'maintain_project_item.create_maintain_project_item', '添加保养项目保养项', '/blade-cps/maintain-project-item/create-maintain-project-item', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:53:06', 1123598821738675201, '2022-05-25 20:53:06', 1, 0), (1529445503924645890, 1529370433348907010, 'maintain_item.query_maintain_item_list', '查看保养项列表(不分页)', '/blade-cps/maintain-item/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 20:53:19', 1123598821738675201, '2022-05-25 20:53:19', 1, 0), (1529445627493036034, 1529370501607010305, 'maintain_project_item.delete_maintain_project_item', '删除保养项目保养项', '/blade-cps/maintain-project-item/delete-maintain-project-item', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:53:48', 1123598821738675201, '2022-05-25 20:53:48', 1, 0), (1529445739707445249, 1529370634105073666, 'device_type_check_project.create_device_check', '设备类型添加点检项目', '/blade-cps/device-type-check-projects', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-25 20:54:15', 1123598821738675201, '2022-05-25 20:54:15', 1, 0), (1529445831873081345, 1529370696457596929, 'device_type_check_project.delete_device_type_check_project', '删除设备类型下的点检项目', '/blade-cps/device-type-check-projects', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-25 20:54:37', 1123598821738675201, '2022-05-25 20:54:37', 1, 0), (1529624963223334914, 1493780574536388609, 'maintain_plan.perform_maintain_plan', '执行保养计划', '/blade-tpm/maintain-plan/perform-maintain-plan', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 08:46:25', 1123598821738675201, '2022-05-26 08:46:25', 1, 0), (1529625084530995202, 1493780574536388609, 'maintain_item.query_maintain_item_list', '查看保养项列表(不分页)', '/blade-cps/maintain-item/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 08:46:54', 1123598821738675201, '2022-05-26 08:46:54', 1, 0), (1529625159525150721, 1493780574536388609, 'material.list_by_spare_part', '查询备品备件物料', '/blade-cps/material/listBySparePart', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 08:47:12', 1123598821738675201, '2022-05-26 08:47:12', 1, 0), (1529625217242968066, 1493780574536388609, 'maintain_record.create_maintain_record', '添加保养记录', '/blade-tpm/maintain-record/create-maintain-record', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 08:47:26', 1123598821738675201, '2022-05-26 08:47:26', 1, 0), (1529626945652731906, 1523489440260923394, 'production_craft_version.detail', '产品工艺版本详情', '/blade-cps/production-craft-version/get/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 08:54:18', 1123598821738675201, '2022-05-26 08:54:18', 1, 0), (1529626945652731907, 1523489440260923394, 'production_craft_version.list', '产品工艺版本列表', '/blade-cps/production-craft-version/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 08:54:18', 1123598821738675201, '2022-05-26 08:54:18', 1, 0), (1529627164834476033, 1523489440260923394, 'production_craft_process.detail', '工艺版本的工序流程详情', '/blade-cps/production-craft-process/get/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 08:55:10', 1123598821738675201, '2022-05-26 08:55:10', 1, 0), (1529628152626622466, 1523489440260923394, 'product_type.list', '产品类型列表', '/blade-cps/product-type/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 08:59:05', 1123598821738675201, '2022-05-26 08:59:05', 1, 0), (1529628224839954433, 1523489440260923394, 'product.list', '产品信息列表', '/blade-cps/product/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 08:59:23', 1123598821738675201, '2022-05-26 08:59:23', 1, 0), (1529628274232078338, 1523489440260923394, 'fixture.list', '工装夹具列表', '/blade-cps/fixture/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 08:59:34', 1123598821738675201, '2022-05-26 08:59:34', 1, 0), (1529628506298724353, 1526736219864084482, 'production_craft_version.cancel_fix_version', '产品工艺版本取消定版', '/blade-cps/production-craft-version/cancel-fix-version/*', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-26 09:00:30', 1123598821738675201, '2022-05-26 09:00:30', 1, 0), (1529628553086185473, 1493780574536388609, 'repair_apply.getetail', '获取维修申请和记录详情(包含对应附件)', '/blade-tpm/repair-apply/detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 09:00:41', 1123598821738675201, '2022-05-26 09:00:41', 1, 0), (1529628553090379778, 1493780574536388609, 'repair_apply.get_apply_detail', '获取维修申请详情(包含对应附件)', '/blade-tpm/repair-apply/get-apply-detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 09:00:41', 1123598821738675201, '2022-05-26 09:00:41', 1, 0), (1529628593871597569, 1529443045554991105, 'production_craft_version.insert', '产品工艺版本新增', '/blade-cps/production-craft-version/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 09:00:51', 1123598821738675201, '2022-05-26 09:00:51', 1, 0), (1529628671843708929, 1529443126387617793, 'production_craft_version.copy_craft_version', '复制工艺版本', '/blade-cps/production-craft-version/copy-craft-version', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 09:01:09', 1123598821738675201, '2022-05-26 09:01:09', 1, 0), (1529628718228516866, 1493780574536388609, 'machine.page_machine', '分页查询机器', '/blade-cps/machine/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 09:01:20', 1123598821738675201, '2022-05-26 09:01:20', 1, 0), (1529628805201604610, 1493780574536388609, 'repair_apply.get_apply_code_list', '获取维修申请单号列表', '/blade-tpm/repair-apply/get-apply-code', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 09:01:41', 1123598821738675201, '2022-05-26 09:01:41', 1, 0), (1529628813204336642, 1529443240388800513, 'production_craft_version.fix_version', '产品工艺版本定版', '/blade-cps/production-craft-version/fix-version/*', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-26 09:01:43', 1123598821738675201, '2022-05-26 09:01:43', 1, 0), (1529628877402353666, 1529443326887931905, 'production_craft_version.insert', '产品工艺版本新增', '/blade-cps/production-craft-version/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 09:01:58', 1123598821738675201, '2022-05-26 09:01:58', 1, 0), (1529628894355730434, 1493780574536388609, 'malfunction_type.page', '分页/查询故障类型列表', '/blade-cps/malfunction/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 09:02:02', 1123598821738675201, '2022-05-26 09:02:02', 1, 0), (1529628966468399106, 1493780574536388609, 'repair_record.create_repair_apply', '新增维修记录', '/blade-tpm/repair-record/create-repair-record', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 09:02:19', 1123598821738675201, '2022-05-26 09:02:19', 1, 0), (1529629144541769730, 1529443326887931905, 'production_craft_process.insert', '工艺版本的工序流程新增', '/blade-cps/production-craft-process/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 09:03:02', 1123598821738675201, '2022-05-26 09:03:02', 1, 0), (1529629231221256194, 1493780574536388609, 'repair_record.get_apply_detail', '获取维修记录详情', '/blade-tpm/repair-record/get-record-detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 09:03:23', 1123598821738675201, '2022-05-26 09:03:23', 1, 0), (1529629302310514690, 1529443455481098242, 'production_craft_process.remove', '工艺版本的工序流程删除', '/blade-cps/production-craft-process/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-26 09:03:39', 1123598821738675201, '2022-05-26 09:03:39', 1, 0), (1529629433961328641, 1529443547525099522, 'production_craft_version.remove', '产品工艺版本删除', '/blade-cps/production-craft-version/remove/*', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-26 09:04:11', 1123598821738675201, '2022-05-26 09:04:11', 1, 0), (1529629480094478338, 1493780574536388609, 'repair_record.implement_repair_record', '确认维修申请记录单', '/blade-tpm/repair-record/implement-repair-record', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 09:04:22', 1123598821738675201, '2022-05-26 09:04:22', 1, 0), (1529629486587260929, 1529443623559442433, 'production_craft_process.update', '工艺版本的工序流程修改', '/blade-cps/production-craft-process/update', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-26 09:04:23', 1123598821738675201, '2022-05-26 09:04:23', 1, 0), (1529629663104544769, 1493780574536388609, 'maintain_record.confirm_maintain_record', '确认保养记录', '/blade-tpm/maintain-record/perform-maintain-record', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 09:05:05', 1123598821738675201, '2022-05-26 09:05:05', 1, 0), (1529629960950460418, 1522823470509395969, 'product.detail', '产品信息详情', '/blade-cps/product/get/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 09:06:16', 1123598821738675201, '2022-05-26 09:06:16', 1, 0), (1529629960954654721, 1522823470509395969, 'product.page', '产品信息分页', '/blade-cps/product/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 09:06:16', 1123598821738675201, '2022-05-26 09:06:16', 1, 0), (1529629960954654722, 1522823470509395969, 'product.tree', '产品信息树', '/blade-cps/product/tree', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 09:06:16', 1123598821738675201, '2022-05-26 09:06:16', 1, 0), (1529630566180139010, 1522823470509395969, 'product_type.page', '产品类型分页', '/blade-cps/product-type/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 09:08:41', 1123598821738675201, '2022-05-26 09:08:41', 1, 0), (1529630734132654081, 1529443774336282625, 'product.insert', '产品信息新增', '/blade-cps/product/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 09:09:21', 1123598821738675201, '2022-05-26 09:09:21', 1, 0), (1529630858405687297, 1529444482309632001, 'product_type.insert', '产品类型新增或修改', '/blade-cps/product-type/saveOrUpdate', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 09:09:50', 1123598821738675201, '2022-05-26 09:09:50', 1, 0), (1529630930761625602, 1529443827880767490, 'product.remove', '产品信息删除', '/blade-cps/product/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-26 09:10:08', 1123598821738675201, '2022-05-26 09:10:08', 1, 0), (1529631026987347970, 1529443896117899265, 'product.export_template', '导出模板', '/blade-cps/product/export-template', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 09:10:31', 1123598821738675201, '2022-05-26 09:10:31', 1, 0), (1529631026991542274, 1529443896117899265, 'product.import_product', '导入产品', '/blade-cps/product/import-product', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 09:10:31', 1123598821738675201, '2022-05-26 09:10:31', 1, 0), (1529631786403835905, 1529443976254271490, 'product.export_product', '导出产品', '/blade-cps/product/export-product', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 09:13:32', 1123598821738675201, '2022-05-26 09:13:32', 1, 0), (1529632078398697474, 1529444128830468098, 'product.update', '产品信息修改', '/blade-cps/product/update', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-26 09:14:41', 1123598821738675201, '2022-05-26 09:14:41', 1, 0), (1529632261668810754, 1529444392463446018, 'product_type.insert', '产品类型新增或修改', '/blade-cps/product-type/saveOrUpdate', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 09:15:25', 1123598821738675201, '2022-05-26 09:15:25', 1, 0), (1529632353750560770, 1529444597921427457, 'product_type.remove', '产品类型删除', '/blade-cps/product-type/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-26 09:15:47', 1123598821738675201, '2022-05-26 09:15:47', 1, 0), (1529632532478242817, 1493759281711730689, 'supplier.page', '分页查询供应商', '/blade-cps/supplier/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 09:16:30', 1123598821738675201, '2022-05-26 09:16:30', 1, 0), (1529632587209715714, 1529442599700475906, 'supplier.save', '新增或更改供应商信息', '/blade-cps/supplier/save', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 09:16:43', 1123598821738675201, '2022-05-26 09:16:43', 1, 0), (1529632628280340481, 1529442690368745474, 'supplier.delete', '删除供应商信息', '/blade-cps/supplier/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-26 09:16:52', 1123598821738675201, '2022-05-26 09:16:52', 1, 0), (1529632646861107201, 1529442794328764418, 'supplier.save', '新增或更改供应商信息', '/blade-cps/supplier/save', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 09:16:57', 1123598821738675201, '2022-05-26 09:16:57', 1, 0), (1529633514704547841, 1123598815738675202, 'notice.detail', '详情', '/blade-desk/notice/detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 09:20:24', 1123598821738675201, '2022-05-26 09:20:24', 1, 0), (1529633514708742146, 1123598815738675202, 'notice.list', '分页', '/blade-desk/notice/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 09:20:24', 1123598821738675201, '2022-05-26 09:20:24', 1, 0), (1529633597781127170, 1123598815738675219, 'notice.submit', '新增或修改', '/blade-desk/notice/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 09:20:44', 1123598821738675201, '2022-05-26 09:20:44', 1, 0), (1529633643532595202, 1123598815738675220, 'notice.submit', '新增或修改', '/blade-desk/notice/submit', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 09:20:54', 1123598821738675201, '2022-05-26 09:20:54', 1, 0), (1529633726885998593, 1123598815738675221, 'notice.remove', '逻辑删除', '/blade-desk/notice/remove', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 09:21:14', 1123598821738675201, '2022-05-26 09:21:14', 1, 0), (1529634233075576834, 1123598815738675222, 'notice.detail', '详情', '/blade-desk/notice/detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 09:23:15', 1123598821738675201, '2022-05-26 09:23:15', 1, 0), (1529644213057040385, 1529365696209694722, 'trace_flow_record.export_dnc_log', '导出追溯', '/blade-trace/trace-flow-record/export', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:02:54', 1123598821738675201, '2022-05-26 10:02:54', 1, 0), (1529644321475604481, 1529418917187891202, 'trace_flow_record.other_process_parameter', '其他设备类型获取工件流程记录', '/blade-trace/trace-flow-record/other-process-parameter', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 10:03:20', 1123598821738675201, '2022-05-26 10:03:20', 1, 0), (1529644321479798786, 1529418917187891202, 'trace_flow_record.process_parameter', '加工设备类型获取工件流程记录', '/blade-trace/trace-flow-record/workstation-process-parameter', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 10:03:20', 1123598821738675201, '2022-05-26 10:03:20', 1, 0), (1529644459585646594, 1529366511146184705, 'trace_flow_settings.change_sort', '改变顺序', '/blade-trace/trace-flow-settings/change-sort', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-26 10:03:53', 1123598821738675201, '2022-05-26 10:03:53', 1, 0), (1529645045341171714, 1529366377121394690, 'trace_flow_settings.remove', '流程维护删除', '/blade-trace/trace-flow-settings/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-26 10:06:13', 1123598821738675201, '2022-05-26 10:06:13', 1, 0), (1529645091327520770, 1529366213258326017, 'trace_flow_settings.insert', '流程维护新增或编辑', '/blade-trace/trace-flow-settings/save', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:06:24', 1123598821738675201, '2022-05-26 10:06:24', 1, 0), (1529645115209887745, 1529366084954566658, 'trace_flow_settings.insert', '流程维护新增或编辑', '/blade-trace/trace-flow-settings/save', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:06:30', 1123598821738675201, '2022-05-26 10:06:30', 1, 0), (1529645204439511042, 1529366287229071361, 'folder.create', '新建文件夹', '/blade-dnc/folder', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:06:51', 1123598821738675201, '2022-05-26 10:06:51', 1, 0), (1529645265697320962, 1529366493181980673, 'folder.folder_page', '分页查询文件夹下文件以及文件夹', '/blade-dnc/folder/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 10:07:05', 1123598821738675201, '2022-05-26 10:07:05', 1, 0), (1529645327177428993, 1529366814360809473, 'ng_reason_info.insert', 'NG原因维护信息表新增', '/blade-trace/ng-reason-info/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:07:20', 1123598821738675201, '2022-05-26 10:07:20', 1, 0), (1529645378897391618, 1529366921986650113, 'ng_reason_info.update', 'NG原因维护信息表修改', '/blade-trace/ng-reason-info/update', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-26 10:07:32', 1123598821738675201, '2022-05-26 10:07:32', 1, 0), (1529645445817511937, 1529367039523631106, 'ng_reason_info.remove', 'NG原因维护信息表删除', '/blade-trace/ng-reason-info/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-26 10:07:48', 1123598821738675201, '2022-05-26 10:07:48', 1, 0), (1529645534724173825, 1529366784077934593, 'file.batch_save', '批量保存文件', '/blade-dnc/file/batch-save', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:08:10', 1123598821738675201, '2022-05-26 10:08:10', 1, 0), (1529645553028116481, 1529367077117177857, 'file.batch_save', '批量保存文件', '/blade-dnc/file/batch-save', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:08:14', 1123598821738675201, '2022-05-26 10:08:14', 1, 0), (1529645616425021442, 1529367234298720257, 'file.copy', '复制文件', '/blade-dnc/file/copy', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:08:29', 1123598821738675201, '2022-05-26 10:08:29', 1, 0), (1529645640202530817, 1529367397725581313, 'file.move', '移动文件', '/blade-dnc/file/move', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-26 10:08:35', 1123598821738675201, '2022-05-26 10:08:35', 1, 0), (1529645688650936322, 1529367253756096513, 'trace_record_ng_reason.page_reason', '工件流程NG原因表列表', '/blade-trace/trace-record-ng-reason/page/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 10:08:46', 1123598821738675201, '2022-05-26 10:08:46', 1, 0), (1529645700004917250, 1529367512796311553, 'file.delete', '删除文件', '/blade-dnc/file', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-26 10:08:49', 1123598821738675201, '2022-05-26 10:08:49', 1, 0), (1529645739360071682, 1529367738789605378, 'file.rename', '重命名', '/blade-dnc/file/*/rename', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-26 10:08:58', 1123598821738675201, '2022-05-26 10:08:58', 1, 0), (1529645765725466625, 1529367377517424642, 'trace_record_ng_reason.insert_reason', '工件追溯NG原因新增', '/blade-trace/trace-record-ng-reason/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:09:05', 1123598821738675201, '2022-05-26 10:09:05', 1, 0), (1529645794569695234, 1529368471857475585, 'file.change_version', '切换版本', '/blade-dnc/file/change-version', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-26 10:09:12', 1123598821738675201, '2022-05-26 10:09:12', 1, 0), (1529645848445530114, 1529367509046603777, 'trace_flow_record.export_workpiece_trace', '导出工件追溯', '/blade-trace/trace-flow-record/export/record-ng', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:09:24', 1123598821738675201, '2022-05-26 10:09:24', 1, 0), (1529646647829540866, 1529368792184860673, 'dnc_archive_directory_file.insert', '归档目录文件新增', '/blade-dnc/dnc-archive-directory-file/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:12:35', 1123598821738675201, '2022-05-26 10:12:35', 1, 0), (1529646753169485825, 1529368916680192001, 'transfer_directory_file.delete_workstation_file', '删除工位文件', '/blade-dnc/transfer-directory/delete-file/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 10:13:00', 1123598821738675201, '2022-05-26 10:13:00', 1, 0), (1529646753173680130, 1529368916680192001, 'transfer_directory_file.online_del', '删除机床文件', '/blade-dnc/transfer-directory/online-del-file', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:13:00', 1123598821738675201, '2022-05-26 10:13:00', 1, 0), (1529647101217026050, 1529369296289869825, 'transfer_directory_file.online_write', '文件在线写入', '/blade-dnc/transfer-directory/online-write-file', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:14:23', 1123598821738675201, '2022-05-26 10:14:23', 1, 0), (1529647101217026051, 1529369296289869825, 'transfer_directory_file.save', '工位目录文件保存', '/blade-dnc/transfer-directory/file', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:14:23', 1123598821738675201, '2022-05-26 10:14:23', 1, 0), (1529647205537755137, 1529369396336603138, 'dnc_art_file.insert', '工艺包文件新增', '/blade-dnc/dnc-art-file/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:14:48', 1123598821738675201, '2022-05-26 10:14:48', 1, 0), (1529647256712458241, 1529369396336603138, 'transfer_directory_file.workstation_from_documents', '工位文件批量上传到我的文档', '/blade-dnc/transfer-directory/workstation-from-documents', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:15:00', 1123598821738675201, '2022-05-26 10:15:00', 1, 0), (1529648387459067905, 1529355344185077762, 'dnc_art_bag.remove', '工艺包删除', '/blade-dnc/dnc-art-bag/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-26 10:19:30', 1123598821738675201, '2022-05-26 10:19:30', 1, 0), (1529648443172007938, 1529355806598705154, 'dnc_art_bag.update_name', '工艺包修改', '/blade-dnc/dnc-art-bag/update', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-26 10:19:43', 1123598821738675201, '2022-05-26 10:19:43', 1, 0), (1529648490223710209, 1529355960840040450, 'dnc_art_bag.insert', '工艺包新增', '/blade-dnc/dnc-art-bag/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:19:54', 1123598821738675201, '2022-05-26 10:19:54', 1, 0), (1529655665281150977, 1529356340852371457, 'dnc_art_bag_log.page', '工艺包日志分页', '/blade-dnc/dnc-art-bag-log/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:48:25', 1123598821738675201, '2022-05-26 10:48:25', 1, 0), (1529655840795996162, 1529356497002115074, 'dnc_art_product.insert', '工艺包关联产品新增', '/blade-dnc/dnc-art-product/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:49:07', 1123598821738675201, '2022-05-26 10:49:07', 1, 0), (1529656009390239746, 1529382093140733953, 'dnc_art_bag_log.export', '工艺包日志导出', '/blade-dnc/dnc-art-bag-log/export', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:49:47', 1123598821738675201, '2022-05-26 10:49:47', 1, 0), (1529656272104665089, 1529356691265499138, 'dnc_art_file.insert', '工艺包文件新增', '/blade-dnc/dnc-art-file/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 10:50:50', 1123598821738675201, '2022-05-26 10:50:50', 1, 0), (1529656307546533889, 1529357431610486785, 'dnc_art_file.remove', '工艺包文件删除', '/blade-dnc/dnc-art-file/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-26 10:50:58', 1123598821738675201, '2022-05-26 10:50:58', 1, 0), (1529658700740898818, 1529380751882006530, 'dnc_art_product.remove', '工艺包关联产品删除', '/blade-dnc/dnc-art-product/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-26 11:00:29', 1123598821738675201, '2022-05-26 11:00:29', 1, 0), (1529660625452478466, 1529359586543218690, 'dnc_process_catalogue.insert', '工艺目录表新增', '/blade-dnc/dnc-process-catalogue/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 11:08:07', 1123598821738675201, '2022-05-26 11:08:07', 1, 0), (1529660643316019202, 1529359774418677761, 'dnc_process_catalogue.remove', '工艺目录表删除', '/blade-dnc/dnc-process-catalogue/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-26 11:08:12', 1123598821738675201, '2022-05-26 11:08:12', 1, 0), (1529661030781628418, 1529360661270704130, 'dnc_archive_directory.insert', 'dnc 归档目录新增', '/blade-dnc/dnc-archive-directory/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 11:09:44', 1123598821738675201, '2022-05-26 11:09:44', 1, 0), (1529661047600787457, 1529360898076913665, 'dnc_archive_directory.remove', 'dnc 归档目录删除', '/blade-dnc/dnc-archive-directory/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-26 11:09:48', 1123598821738675201, '2022-05-26 11:09:48', 1, 0), (1529661208649478145, 1529361411451334658, 'dnc_archive_directory_file.remove', '归档目录文件删除', '/blade-dnc/dnc-archive-directory-file/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-26 11:10:27', 1123598821738675201, '2022-05-26 11:10:27', 1, 0), (1529661546295144449, 1529362480432623618, 'dnc_factory_file.insert', 'blade_dnc_factory_file新增', '/blade-dnc/dnc-factory-file/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 11:11:47', 1123598821738675201, '2022-05-26 11:11:47', 1, 0), (1529661736506830850, 1529362679754338306, 'dnc_archive_directory_file.remove', '归档目录文件删除', '/blade-dnc/dnc-archive-directory-file/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-26 11:12:32', 1123598821738675201, '2022-05-26 11:12:32', 1, 0), (1529661861501284353, 1529363135868121090, 'dnc_operation_log.export_dnc_log', '导出dnc操作日志', '/blade-dnc/operation-file/export-log', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 11:13:02', 1123598821738675201, '2022-05-26 11:13:02', 1, 0), (1529662974535348225, 1529356691265499138, 'folder.file_page', '分页查询文件', '/blade-dnc/folder/file-page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 11:17:28', 1123598821738675201, '2022-05-26 11:17:28', 1, 0), (1529662974539542530, 1529356691265499138, 'folder.lazy_folder_list', '文件夹列表(懒加载)', '/blade-dnc/folder/lazy', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 11:17:28', 1123598821738675201, '2022-05-26 11:17:28', 1, 0), (1529663349824892929, 1529356691265499138, 'dnc_archive_directory_file.page', '归档目录文件分页', '/blade-dnc/dnc-archive-directory-file/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 11:18:57', 1123598821738675201, '2022-05-26 11:18:57', 1, 0), (1529663394666196993, 1529356691265499138, 'dnc_archive_directory.list', 'dnc 归档目录(懒加载)列表', '/blade-dnc/dnc-archive-directory/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 11:19:08', 1123598821738675201, '2022-05-26 11:19:08', 1, 0), (1529663456955805698, 1529356691265499138, 'transfer_directory_file.file_pages', '工位文件(分页)', '/blade-dnc/transfer-directory/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 11:19:23', 1123598821738675201, '2022-05-26 11:19:23', 1, 0), (1529666373582532610, 1123598815738675220, 'notice.detail', '详情', '/blade-desk/notice/detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 11:30:58', 1123598821738675201, '2022-05-26 11:30:58', 1, 0), (1529669698084352002, 1529442599700475906, 'notice.page', '分页', '/blade-desk/notice/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 11:44:11', 1123598821738675201, '2022-05-26 11:44:11', 1, 0), (1529694478183378946, 1529443045554991105, 'product_type.list', '产品类型列表', '/blade-cps/product-type/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 13:22:39', 1123598821738675201, '2022-05-26 13:22:39', 1, 0), (1529694569048780802, 1529443045554991105, 'process.page', '查询工序-分页', '/blade-cps/process/page', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 13:23:00', 1123598821738675201, '2022-05-26 13:23:00', 1, 0), (1529694637285912578, 1529443045554991105, 'tool.list', '刀具列表', '/blade-cps/tool/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-26 13:23:17', 1123598821738675201, '2022-05-26 13:23:17', 1, 0), (1529694753426190337, 1529443045554991105, 'tray.tooling_tree', '工装-托盘夹具-树形结构', '/blade-cps/tray/tooling-tree', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-26 13:23:44', 1123598821738675201, '2022-05-26 13:23:44', 1, 0), (1529706805175726082, 1529376249053392898, 'check_record.remove_files', '删除点检记录下的附件', '/blade-tpm/check-record/files', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-26 14:11:38', 1123598821738675201, '2022-05-26 14:11:38', 1, 0), (1529706805175726083, 1529376249053392898, 'check_record.remove_items', '删除点检记录下的点检项', '/blade-tpm/check-record/items', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-26 14:11:38', 1123598821738675201, '2022-05-26 14:11:38', 1, 0), (1529706805175726084, 1529376249053392898, 'check_record.update_check_record', '修改点检记录', '/blade-tpm/check-record', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-26 14:11:38', 1123598821738675201, '2022-05-26 14:11:38', 1, 0), (1529781591591563265, 1481429815657304065, 'file.history', '版本历史', '/blade-dnc/file/history', NULL, NULL, 'GET', 1529774987722829825, 1123598813738675201, '2022-05-26 19:08:48', 1529774987722829825, '2022-05-26 19:08:48', 1, 0), (1530025608833085442, 1530024832266088449, 'transfer_directory_file.switch_file', '切换文件版本', '/blade-dnc/transfer-directory/switch-file', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-27 11:18:26', 1123598821738675201, '2022-05-27 11:18:26', 1, 0), (1530028339979300866, 1529356497002115074, 'product.page', '产品信息分页', '/blade-cps/product/page', NULL, NULL, 'GET', 1529774987722829825, 1123598813738675201, '2022-05-27 11:29:17', 1529774987722829825, '2022-05-27 11:29:17', 1, 0), (1530032043155468290, 1529362480432623618, 'dnc_factory_file.verify_file_name', '验证文件是否重复', '/blade-dnc/dnc-factory-file/verifyFile', NULL, NULL, 'POST', 1529774987722829825, 1123598813738675201, '2022-05-27 11:44:00', 1529774987722829825, '2022-05-27 11:44:00', 1, 0), (1530082974184419329, 1529350225938821122, 'efficiency_analysis.export_efficiency_analysis', '导出效率分析', '/blade-mdc/efficiency-analysis/export', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-27 15:06:23', 1123598821738675201, '2022-05-27 15:06:23', 1, 0), (1530083378955726849, 1498900340410212354, 'efficiency_analysis.get_interval_date', '获取拆分日期', '/blade-mdc/efficiency-analysis/interval', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-27 15:08:00', 1123598821738675201, '2022-05-27 15:08:00', 1, 0), (1530086035506245633, 1529350313494917122, 'output_statistics.export_output_account', '导出产量统计', '/blade-mdc/output/export', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-27 15:18:33', 1123598821738675201, '2022-05-27 15:18:33', 1, 0), (1530086097934266369, 1503199291613646849, 'efficiency_analysis.get_interval_date', '获取拆分日期', '/blade-mdc/efficiency-analysis/interval', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-27 15:18:48', 1123598821738675201, '2022-05-27 15:18:48', 1, 0), (1530092756781936641, 1519129245830651905, 'tray.list_tray', '托盘列表', '/blade-cps/tray/list', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-27 15:45:16', 1123598821738675201, '2022-05-27 15:45:16', 1, 0), (1530093662344753153, 1522048292781465601, 'tray.un_used_tray_tree', '未使用的托盘 托盘-托盘组树', '/blade-cps/tray/un-used-tray-tree', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-27 15:48:52', 1123598821738675201, '2022-05-27 15:48:52', 1, 0), (1530096006742585345, 1529350075715629057, 'time_used_analysis.export_time_used', '导出', '/blade-mdc/time-used-analysis/excel/export', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-27 15:58:10', 1123598821738675201, '2022-05-27 15:58:10', 1, 0), (1530096912427036674, 1530096555961528322, 'folder.folder_list', '文件夹下文件以及文件夹', '/blade-dnc/folder', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-27 16:01:46', 1123598821738675201, '2022-05-27 16:01:46', 1, 0), (1530362282451218433, 1529370868902211585, 'workstation_wcs.save_setting', '新增工况参数设置', '/blade-cps/workstation-wcs/save/setting', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-28 09:36:16', 1123598821738675201, '2022-05-28 09:36:16', 1, 0), (1530362836673966081, 1529368835591712769, 'check_item.update_check_item', '修改点检项', '/blade-cps/check-item', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-28 09:38:28', 1123598821738675201, '2022-05-28 09:38:28', 1, 0), (1530363444600582145, 1529369583838769153, 'malfunction_type.update_malfunction_type', '编辑故障类型', '/blade-cps/malfunction/update-malfunctionType', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-28 09:40:53', 1123598821738675201, '2022-05-28 09:40:53', 1, 0), (1530365370713059329, 1530365119126122498, 'device_type.update_device_type', '更新机器类型', '/blade-cps/device-types', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-28 09:48:32', 1123598821738675201, '2022-05-28 09:48:32', 1, 0), (1530368253676302338, 1530366417586171906, 'process_association.delete', '删除工序关联', '/blade-cps/process-association/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-28 09:59:59', 1123598821738675201, '2022-05-28 09:59:59', 1, 0), (1530368277667721217, 1530367646131367937, 'process_association.delete', '删除工序关联', '/blade-cps/process-association/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-28 10:00:05', 1123598821738675201, '2022-05-28 10:00:05', 1, 0), (1530368384156905473, 1530367772786765825, 'process.save', '新增或更改工序信息', '/blade-cps/process/save', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-28 10:00:30', 1123598821738675201, '2022-05-28 10:00:30', 1, 0), (1530368462523281410, 1530367877216546817, 'process_association.delete', '删除工序关联', '/blade-cps/process-association/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-28 10:00:49', 1123598821738675201, '2022-05-28 10:00:49', 1, 0), (1530368499621900290, 1530367965984796673, 'process_association.save', '保存工序关联信息', '/blade-cps/process-association/save', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-28 10:00:58', 1123598821738675201, '2022-05-28 10:00:58', 1, 0), (1530436591902072834, 1529368134236975106, 'common_group.insert', '新增', '/blade-cps/group', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-28 14:31:32', 1123598821738675201, '2022-05-28 14:31:32', 1, 0), (1530436925810614273, 1529368671934164993, 'common_group.delete', '删除', '/blade-cps/group', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-28 14:32:52', 1123598821738675201, '2022-05-28 14:32:52', 1, 0), (1530437086167244801, 1529389046059446273, 'common_group.update', '修改', '/blade-cps/group', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-28 14:33:30', 1123598821738675201, '2022-05-28 14:33:30', 1, 0), (1530437130933051393, 1529389046059446273, 'employee.list', '分页', '/blade-cps/employee/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-28 14:33:41', 1123598821738675201, '2022-05-28 14:33:41', 1, 0), (1530437782673367041, 1529368671934164993, 'organization.delete_organization', '删除组织', '/blade-cps/organization', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-28 14:36:16', 1123598821738675201, '2022-05-28 14:36:16', 1, 0), (1530437906048819202, 1529366649793097730, 'common_group.update', '修改', '/blade-cps/group', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-28 14:36:46', 1123598821738675201, '2022-05-28 14:36:46', 1, 0), (1530437956946698242, 1529366560206958594, 'common_group.insert', '新增', '/blade-cps/group', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-28 14:36:58', 1123598821738675201, '2022-05-28 14:36:58', 1, 0), (1530450179962884098, 1529365376100413442, 'workstation.delete', '删除工位', '/blade-cps/workstation', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-05-28 15:25:32', 1123598821738675201, '2022-05-28 15:25:32', 1, 0), (1530450495252910081, 1529368269578776577, 'common_group.import_common_group', '导入', '/blade-cps/group/import', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-28 15:26:47', 1123598821738675201, '2022-05-28 15:26:47', 1, 0), (1531068774049161218, 1531068566301089794, 'material_storage.add_material_storage', '物料存放新增', '/blade-cps/material-storage', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-30 08:23:36', 1123598821738675201, '2022-05-30 08:23:36', 1, 0), (1531068705308712962, 1531068413942996993, 'material_type.update_material_type', '修改物料类型', '/blade-cps/material-type/update-material-type', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-30 08:23:20', 1123598821738675201, '2022-05-30 08:23:20', 1, 0), (1530496934578790402, 1530125450446413825, 'stock_out_type.update', '出库类型修改', '/blade-cps/stock-out-type/update', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-28 18:31:19', 1123598821738675201, '2022-05-28 18:31:19', 1, 0), (1530496892312788993, 1530125301691228162, 'stock_in_type.update', '入库类型修改', '/blade-cps/stock-in-type/update', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-05-28 18:31:09', 1123598821738675201, '2022-05-28 18:31:09', 1, 0), (1531154243789172737, 1527115790989488129, 'material_storage.page_material', '库位下的物料列表-分页', '/blade-cps/material-storage/page', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-05-30 14:03:14', 1123598821738675201, '2022-05-30 14:03:14', 1, 0), (1535168232301764610, 1535168094212694017, 'bom_version.fix_version', 'bom版本定版', '/blade-cps/bom-version/fix-version/*', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-06-10 15:53:23', 1123598821738675201, '2022-06-10 15:53:23', 1, 0), (1535169363656548354, 1535169198577131521, 'bom_version.cancel_fix_version', 'bom版本取消定版', '/blade-cps/bom-version/cancel-fix-version/*', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-06-10 15:57:53', 1123598821738675201, '2022-06-10 15:57:53', 1, 0), (1535243102413434881, 1535242977381232642, 'bom_version.remove', 'bom版本删除', '/blade-cps/bom-version/remove/*', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-06-10 20:50:54', 1123598821738675201, '2022-06-10 20:50:54', 1, 0), (1535243719416524801, 1535243543318671362, 'bom_process.insert', 'bom物料工序新增', '/blade-cps/bom-process/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-06-10 20:53:21', 1123598821738675201, '2022-06-10 20:53:21', 1, 0), (1535244265359716353, 1535244130533814273, 'bom_material.insert', 'bom物料新增', '/blade-cps/bom-material/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-06-10 20:55:31', 1123598821738675201, '2022-06-10 20:55:31', 1, 0), (1535245678445899778, 1526031760774340609, 'product.tree', '产品信息树', '/blade-cps/product/tree', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-06-10 21:01:08', 1123598821738675201, '2022-06-10 21:01:08', 1, 0), (1535246378273910786, 1535246268496392194, 'bom_version.insert', 'bom版本新增', '/blade-cps/bom-version/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-06-10 21:03:55', 1123598821738675201, '2022-06-10 21:03:55', 1, 0), (1536646148505382913, 1529368835591712769, 'check_project.update_check_project', '编辑点检项目', '/blade-cps/check-project', NULL, NULL, 'PUT', 1524925283405565953, 1123598813738675201, '2022-06-14 17:46:06', 1524925283405565953, '2022-06-14 17:46:06', 1, 0), (1536647204983451650, 1469106388762296321, 'bas_coderule.change_default', '启用停用', '/blade-system/bascoderule/change-default/*', NULL, NULL, 'GET', 1524925283405565953, 1123598813738675201, '2022-06-14 17:50:18', 1524925283405565953, '2022-06-14 17:50:18', 1, 0), (1536648208881725441, 1529370368333000705, 'maintain_project.delete_maintain_project', '删除保养项目', '/blade-cps/maintain-project/delete-maintain-project', NULL, NULL, 'POST', 1524925283405565953, 1123598813738675201, '2022-06-14 17:54:17', 1524925283405565953, '2022-06-14 17:54:17', 1, 0), (1542067872368275458, 1523489440260923394, 'production_craft_version.detail_version', '产品工艺版本详情', '/blade-cps/production-craft-version/detail/*', null, null, 'GET', 1531880492636495873, 1123598813738675201, '2022-06-29 16:50:06', 1531880492636495873, '2022-06-29 16:50:06', 1, 0), (1542064362887249922, 1523489440260923394, 'production_craft_process.detail_process', '工艺版本的工序流程详情', '/blade-cps/production-craft-process/get/*', null, null, 'GET', 1123598821738675201, 1123598813738675201, '2022-06-29 16:36:09', 1123598821738675201, '2022-06-29 16:36:09', 1, 0), (1542064187062026242, 1529443623559442433, 'production_craft_process.update_version_process', '工艺版本的工序流程修改', '/blade-cps/production-craft-process/update', null, null, 'PUT', 1123598821738675201, 1123598813738675201, '2022-06-29 16:35:27', 1123598821738675201, '2022-06-29 16:35:27', 1, 0), (1542064187053637634, 1529443623559442433, 'production_craft_process.update_sort', '工艺版本的工序流程顺序更新', '/blade-cps/production-craft-process/update-sort', null, null, 'PUT', 1123598821738675201, 1123598813738675201, '2022-06-29 16:35:27', 1123598821738675201, '2022-06-29 16:35:27', 1, 0), (1542063886535950338, 1529443547525099522, 'production_craft_process.remove_process', '工艺版本的工序流程删除', '/blade-cps/production-craft-process/remove', null, null, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-06-29 16:34:15', 1123598821738675201, '2022-06-29 16:34:15', 1, 0), (1542063803656503297, 1529443455481098242, 'production_craft_version.remove_version', '产品工艺版本删除', '/blade-cps/production-craft-version/remove/*', null, null, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-06-29 16:33:56', 1123598821738675201, '2022-06-29 16:33:56', 1, 0), (1542063575419256833, 1529443126387617793, 'craft_routing.copy_craft_version', '复制工艺版本', '/blade-cps/craft-routing/copy-craft-version', null, null, 'POST', 1123598821738675201, 1123598813738675201, '2022-06-29 16:33:01', 1123598821738675201, '2022-06-29 16:33:01', 1, 0), (1541713212361736193, 1529443240388800513, 'production_craft_version.fix_version', '产品工艺版本定版', '/blade-cps/production-craft-version/fix-version/*', null, null, 'PUT', 1123598821738675201, 1123598813738675201, '2022-06-28 17:20:48', 1123598821738675201, '2022-06-28 17:20:48', 1, 0), (1541713051308851202, 1529443045554991105, 'production_craft_version.save_craft_version', '产品工艺版本新增', '/blade-cps/production-craft-version/insert', null, null, 'POST', 1123598821738675201, 1123598813738675201, '2022-06-28 17:20:10', 1123598821738675201, '2022-06-28 17:20:10', 1, 0), (1541680943582584833, 1541661765077213185, 'dnc_process_catalogue.cate_art_bag_tree', '工艺目录表工艺包程序树', '/blade-dnc/dnc-process-catalogue/cate-art-bag-tree', null, null, 'GET', 1531880492636495873, 1123598813738675201, '2022-06-28 15:12:35', 1531880492636495873, '2022-06-28 16:08:01', 1, 0), (1541680194416975873, 1541662253902372865, 'craft_routing.delete_craft', '删除工艺路线', '/blade-cps/craft-routing/remove', null, null, 'DELETE', 1531880492636495873, 1123598813738675201, '2022-06-28 15:09:36', 1531880492636495873, '2022-06-28 15:09:36', 1, 0), (1541680152696233986, 1541662062897963010, 'craft_routing.update_craft', '编辑工艺路线', '/blade-cps/craft-routing/update', null, null, 'PUT', 1531880492636495873, 1123598813738675201, '2022-06-28 15:09:26', 1531880492636495873, '2022-06-28 15:09:26', 1, 0), (1541680020449828865, 1541661765077213185, 'craft_routing.save_routing', '新增工艺路线', '/blade-cps/craft-routing/save', null, null, 'POST', 1531880492636495873, 1123598813738675201, '2022-06-28 15:08:55', 1531880492636495873, '2022-06-28 15:08:55', 1, 0), (1541679924366712834, 1523489440260923394, 'craft_routing.detail_craft', '工艺路线详情', '/blade-cps/craft-routing/detail', null, null, 'GET', 1531880492636495873, 1123598813738675201, '2022-06-28 15:08:32', 1531880492636495873, '2022-06-28 15:08:32', 1, 0), (1541679704165752834, 1523489440260923394, 'craft_routing.list_craft_routing', '查看所有工艺路线', '/blade-cps/craft-routing/list', null, null, 'POST', 1531880492636495873, 1123598813738675201, '2022-06-28 15:07:39', 1531880492636495873, '2022-06-28 15:07:39', 1, 0), (1541676932565475330, 1541669017884467201, 'craft_routing.craft_unbind_production', '产品和工艺路线解绑', '/blade-cps/craft-routing/unbind-production', null, null, 'GET', 1123598821738675201, 1123598813738675201, '2022-06-28 14:56:38', 1123598821738675201, '2022-06-28 14:56:38', 1, 0), (1541676868409401345, 1541668925542670337, 'craft_routing.craft_bind_production', '产品和工艺路线绑定', '/blade-cps/craft-routing/bind-production', null, null, 'GET', 1123598821738675201, 1123598813738675201, '2022-06-28 14:56:23', 1123598821738675201, '2022-06-28 14:56:23', 1, 0), (1541676567937851394, 1541668488361975810, 'craft_routing.list_not_band_craft', '获取没有绑定过产品的工艺路线', '/blade-cps/craft-routing/list-not-band-craft', null, null, 'GET', 1123598821738675201, 1123598813738675201, '2022-06-28 14:55:11', 1123598821738675201, '2022-06-28 14:55:11', 1, 0), (1541676487281385473, 1541668488361975810, 'craft_routing.get_craft_by_production', '通过产品获取工艺路线', '/blade-cps/craft-routing/get-production-craft', null, null, 'GET', 1123598821738675201, 1123598813738675201, '2022-06-28 14:54:52', 1123598821738675201, '2022-06-28 14:54:52', 1, 0), (1541675686467117058, 1541668794567139329, 'material.get_page_material', '查询分页', '/blade-cps/material/page', null, null, 'GET', 1123598821738675201, 1123598813738675201, '2022-06-28 14:51:41', 1123598821738675201, '2022-06-28 14:51:41', 1, 0), (1541675491557810177, 1541668794567139329, 'bom_version.list', 'bom版本列表', '/blade-cps/bom-version/list', null, null, 'GET', 1123598821738675201, 1123598813738675201, '2022-06-28 14:50:55', 1123598821738675201, '2022-06-28 14:50:55', 1, 0), (1541675374939381762, 1541668794567139329, 'craft_routing.list_fixed_version_by_production', '通过产品获取产品工艺下定版的版本', '/blade-cps/craft-routing/get-fixed-list', null, null, 'GET', 1123598821738675201, 1123598813738675201, '2022-06-28 14:50:27', 1123598821738675201, '2022-06-28 14:50:27', 1, 0), (1541673420897034242, 1522823470509395969, 'product.lazy_tree', '产品信息懒加载树', '/blade-cps/product/lazy/tree', null, null, 'POST', 1123598821738675201, 1123598813738675201, '2022-06-28 14:42:41', 1123598821738675201, '2022-06-28 14:42:41', 1, 0), (1542102995532886017, 1541661765077213185, 'craft_routing.not_band_product', '获取没有绑定过工艺路线的产品', '/blade-cps/craft-routing/not-band-craft', null, null, 'GET', 1123598821738675201, 1123598813738675201, '2022-06-29 19:09:40', 1123598821738675201, '2022-06-29 19:09:40', 1, 0), (1543772223603122177, 1529443623559442433, 'dnc_process_catalogue.cate_art_bag_tree', '工艺目录表工艺包程序树', '/blade-dnc/dnc-process-catalogue/cate-art-bag-tree', null, null, 'GET', 1123598821738675201, 1123598813738675201, '2022-07-04 09:42:35', 1123598821738675201, '2022-07-04 09:42:35', 1, 0), (1543768107715829761, 1523489440260923394, 'production_craft_version.update_version', '产品工艺版本修改', '/blade-cps/production-craft-version/update', null, null, 'PUT', 1531880492636495873, 1123598813738675201, '2022-07-04 09:26:13', 1531880492636495873, '2022-07-04 09:26:13', 1, 0), (1554004839669698561, 1551739877858926594, 'dnc_fixed_space.get_tree', '工位获取固定空间树', '/blade-dnc/dnc-fixed-space/tree-fix-space', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-08-01 15:23:20', 1123598821738675201, '2022-08-01 15:23:20', 1, 0), (1554004839673892865, 1551739877858926594, 'dnc_fixed_space.get_tree_root', '工位获取固定空间树根节点', '/blade-dnc/dnc-fixed-space/tree-root-id', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-08-01 15:23:20', 1123598821738675201, '2022-08-01 15:23:20', 1, 0), (1554004940790173697, 1551739877858926594, 'transfer_director.ftp_list_relation_workstation', '获取工位目录工位关系列表', '/blade-dnc/ftp-director/ftp-workstation-list', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-08-01 15:23:45', 1123598821738675201, '2022-08-01 15:23:45', 1, 0), (1554005028564373506, 1552474588642234369, 'transfer_director.create_directory', '创建工位目录', '/blade-dnc/ftp-director/create-director', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-08-01 15:24:05', 1123598821738675201, '2022-08-01 15:24:05', 1, 0), (1554005092619784194, 1552475927401156610, 'transfer_director.update_directory', '编辑工位目录', '/blade-dnc/ftp-director/update-director', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-08-01 15:24:21', 1123598821738675201, '2022-08-01 15:24:21', 1, 0), (1554005191940902913, 1552477343062667265, 'transfer_director.del_directory', '删除工位目录', '/blade-dnc/ftp-director/del-director', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-08-01 15:24:44', 1123598821738675201, '2022-08-01 15:24:44', 1, 0), (1554005296957886465, 1552476695336300545, 'dnc_fixed_space.add_fix_space', '新增固定空间目录', '/blade-dnc/dnc-fixed-space/add-fix-space', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-08-01 15:25:09', 1123598821738675201, '2022-08-01 15:25:09', 1, 0), (1554005412888449025, 1552476901159186434, 'dnc_fixed_space.update_name', '编辑固定空间目录', '/blade-dnc/dnc-fixed-space/update-fix-space', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-08-01 15:25:37', 1123598821738675201, '2022-08-01 15:25:37', 1, 0), (1554005521437036546, 1552477030549270530, 'dnc_fixed_space.del_fix_space', '删除固定空间目录', '/blade-dnc/dnc-fixed-space/del-fix-space', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-08-01 15:26:03', 1123598821738675201, '2022-08-01 15:26:03', 1, 0), (1554279660178739202, 1471285883018977281, 'transfer_director.get_ftp_list', '获取工位目录列表', '/blade-dnc/ftp-director/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-08-02 09:35:23', 1123598821738675201, '2022-08-02 09:35:23', 1, 0), (1557260878568042498, 1496427333921992705, 'dnc_art_bag.list_bag_process', '工艺包 程序文档搜索', '/blade-dnc/dnc-art-bag/list-bag-process', null, null, 'POST', 1123598821738675201, 1123598813738675201, '2022-08-10 15:01:41', 1123598821738675201, '2022-08-10 15:01:41', 1, 0), (1557260796594565121, 1496427333921992705, 'dnc_art_bag.cur_and_sub_page', '当前目录及子集-所有工艺包分页', '/blade-dnc/dnc-art-bag/cur-sub-page', null, null, 'GET', 1123598821738675201, 1123598813738675201, '2022-08-10 15:01:21', 1123598821738675201, '2022-08-10 15:01:21', 1, 0), (1557260530411450369, 1498471500208750594, 'process_parameter.get_all_shift_time', '获取所选天的班次开始结束时间', '/blade-mdc/process-parameter/all-shift-time', null, null, 'POST', 1123598821738675201, 1123598813738675201, '2022-08-10 15:00:18', 1123598821738675201, '2022-08-10 15:00:18', 1, 0), (1557260530419838977, 1498471500208750594, 'process_parameter.query_process_parameter_one_chart', '单个加工过程参数', '/blade-mdc/process-parameter/chart/dmp-item', null, null, 'POST', 1123598821738675201, 1123598813738675201, '2022-08-10 15:00:18', 1123598821738675201, '2022-08-10 15:00:18', 1, 0), (1564862226427330561, 1526031760774340609, 'production_craft_process.list', '工艺版本的工序流程列表', '/blade-cps/production-craft-process/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-08-31 14:26:43', 1123598821738675201, '2022-08-31 14:26:43', 1, 0), (1570317034743193602, 1567788480544706561, 'employee_perf.employee_work', '查看员工在时间范围内的上下线的工位', '/blade-perf/employee-perf/employee-work', null, null, 'POST', 1123598821738675201, 1123598813738675201, '2022-09-15 15:42:11', 1123598821738675201, '2022-09-15 15:42:11', 1, 0), (1570317034743193603, 1567788480544706561, 'employee_perf.search', '查看员工绩效', '/blade-perf/employee-perf/search-perf', null, null, 'POST', 1123598821738675201, 1123598813738675201, '2022-09-15 15:42:11', 1123598821738675201, '2022-09-15 15:42:11', 1, 0), (1570317034743193604, 1567788480544706561, 'employee_perf.work_employee', '查看工位在时间范围内被上下线的员工', '/blade-perf/employee-perf/work-employee', null, null, 'POST', 1123598821738675201, 1123598813738675201, '2022-09-15 15:42:11', 1123598821738675201, '2022-09-15 15:42:11', 1, 0), (1570317004229632001, 1567788356858875905, 'employee_on_off_work_log.query_on_off_log', '查看工位日志', '/blade-perf/log/query', null, null, 'POST', 1123598821738675201, 1123598813738675201, '2022-09-15 15:42:04', 1123598821738675201, '2022-09-15 15:42:04', 1, 0), (1570316963599409154, 1567788210532192258, 'employee_on_off_work.batch_on_off_workstation', '批量工位上下线', '/blade-perf/on-off-work/batch-on-off-work', null, null, 'POST', 1123598821738675201, 1123598813738675201, '2022-09-15 15:41:54', 1123598821738675201, '2022-09-15 15:41:54', 1, 0), (1570316963595214850, 1567788210532192258, 'employee_on_off_work.all_workstation_status', '查看工位当前上下线状态', '/blade-perf/on-off-work/work-status', null, null, 'POST', 1123598821738675201, 1123598813738675201, '2022-09-15 15:41:54', 1123598821738675201, '2022-09-15 15:41:54', 1, 0), (1570316963599409155, 1567788210532192258, 'employee_on_off_work.current_employee', '当前账号绑定的员工', '/blade-perf/on-off-work/current-employee', null, null, 'GET', 1123598821738675201, 1123598813738675201, '2022-09-15 15:41:54', 1123598821738675201, '2022-09-15 15:41:54', 1, 0), (1570316963603603458, 1567788210532192258, 'employee_on_off_work.will_on_work', '要上线的工位树', '/blade-perf/on-off-work/will-on-work', null, null, 'GET', 1123598821738675201, 1123598813738675201, '2022-09-15 15:41:54', 1123598821738675201, '2022-09-15 15:41:54', 1, 0), (1570316963599409156, 1567788210532192258, 'employee_on_off_work.will_off_work', '要下线的工位树', '/blade-perf/on-off-work/will-off-work', null, null, 'GET', 1123598821738675201, 1123598813738675201, '2022-09-15 15:41:54', 1123598821738675201, '2022-09-15 15:41:54', 1, 0), (1529333071340318723, 1481428568128688130, 'dnc_process_catalogue.art_tree', '工艺目录树结构', '/blade-dnc/dnc-process-catalogue/art-tree', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:26:32', 1123598821738675201, '2022-05-25 13:26:32', 1, 0), (1529330980265865220, 1481428568128688130, 'folder.folder_tree', '文件夹列表(懒加载)', '/blade-dnc/folder/folder-tree', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-05-25 13:18:14', 1123598821738675201, '2022-05-25 13:18:14', 1, 0), (1590160069294530562, 1523489440260923394, 'fixture.all_group_fixture', '所有夹具组和夹具树形', '/blade-cps/fixture/all-group-fixture', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-11-09 09:51:19', 1123598821738675201, '2022-11-09 09:51:19', 1, 0), (1590160168045223938, 1523489440260923394, 'tool_manage.tree', '树形结构', '/blade-tool/tool-manage/tree', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-11-09 09:51:42', 1123598821738675201, '2022-11-09 09:51:42', 1, 0), (1591989653557137409, 1481429815657304065, 'file.exists_file', '文件夹下是否存在文件', '/blade-dnc/file/exists-file', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-11-14 11:01:26', 1123598821738675201, '2022-11-14 11:01:26', 1, 0), (1592055613544120322, 1529369315491393537, 'check_project.remove_check_project', '删除点检项目', '/blade-cps/check-project', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-11-14 15:23:32', 1123598821738675201, '2022-11-14 15:23:32', 1, 0), (1592690110834511874, 1471285883018977281, 'transfer_director.get_machine_of_workstation_for_ftp', '获取工位目录列表', '/blade-dnc/ftp-director/get-machine-of-workstation-ftp', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-11-16 09:24:48', 1123598821738675201, '2022-11-16 09:24:48', 1, 0), (1595248432013836289, 1529364933337100289, 'machine.list_no_band', '查询未绑定的机器', '/blade-cps/machine/list-no-band', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-11-23 10:50:39', 1123598821738675201, '2022-11-23 10:50:39', 1, 0), (1600742952014819329, 1491309591410286594, 'maintain_record.get_maintain_detail', '查看保养详情', '/blade-tpm/maintain-record/get-maintain-detail', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-12-08 14:43:55', 1123598821738675201, '2022-12-08 14:43:55', 1, 0), (1598569557251796994, 1523489440260923394, 'production_craft_process.save_parallel', '新建并序', '/blade-cps/production-craft-process/save-parallel', null, null, 'POST', 1123598821738675201, 1123598813738675201, '2022-12-02 14:47:37', 1123598821738675201, '2022-12-02 14:47:37', 1, 0), (1598569557255991298, 1523489440260923394, 'production_craft_process.tree_process', '工艺版本下的树形结构', '/blade-cps/production-craft-process/child-tree', null, null, 'GET', 1123598821738675201, 1123598813738675201, '2022-12-02 14:47:37', 1123598821738675201, '2022-12-02 14:47:37', 1, 0), (1598569557255991299, 1523489440260923394, 'production_craft_process.update_parallel_process', '修改虚拟序的相关信息', '/blade-cps/production-craft-process/update-parallel', null, null, 'PUT', 1123598821738675201, 1123598813738675201, '2022-12-02 14:47:37', 1123598821738675201, '2022-12-02 14:47:37', 1, 0), (1598599333432340482, 1523489440260923394, 'production_craft_process.parallel_save', '工艺版本并序新增', '/blade-cps/production-craft-process/parallel-save', null, null, 'POST', 1123598821738675201, 1123598813738675201, '2022-12-02 16:45:56', 1123598821738675201, '2022-12-02 16:45:56', 1, 0), (1603592779066548226, 1523489440260923394, 'production_craft_process.child_process_save', '工艺版本新增子序', '/blade-cps/production-craft-process/child-process-save', null, null, 'POST', 1123598821738675201, 1123598813738675201, '2022-12-16 11:28:06', 1123598821738675201, '2022-12-16 11:28:06', 1, 0), (1603592779070742529, 1523489440260923394, 'production_craft_process.child_process_update', '工艺版本子序移除-放置最后', '/blade-cps/production-craft-process/child-process-update', null, null, 'POST', 1123598821738675201, 1123598813738675201, '2022-12-16 11:28:06', 1123598821738675201, '2022-12-16 11:28:06', 1, 0); INSERT INTO blade_business_notify (id, business_name, business_key, notify_type, notify_id, notify_template_id, create_user, create_dept, create_time, update_user, update_time, status, tenant_id, is_deleted) VALUES (1562682334207033345, '保养计划预警', 'maintenance-warning', 'dingTalk', '1001', '1562682333502390274', 1123598821738675201, 1123598813738675201, '2022-08-25 14:04:36', 1123598821738675201, '2022-08-25 14:04:36', 1, '000000', 0), (1562685856684195841, '保养逾期', 'maintain-overdue', 'dingTalk', '1001', '1562685856046661634', 1123598821738675201, 1123598813738675201, '2022-08-25 14:18:36', 1123598821738675201, '2022-08-25 14:18:36', 1, '000000', 0), (1562779703737077761, '维修申请', 'maintenance-apply', 'dingTalk', '1001', '1562779702906605570', 1123598821738675201, 1123598813738675201, '2022-08-25 20:31:31', 1123598821738675201, '2022-08-25 20:31:31', 1, '000000', 0), (1562643198368575490, '保养计划', 'maintenance', 'dingTalk', '1001', '1562643197663932417', 1123598821738675201, 1123598813738675201, '2022-08-25 11:29:06', 1123598821738675201, '2022-08-26 17:54:02', 1, '000000', 0), (1562982112774180865, '维修申请', 'maintenance-apply', 'email', '1003', '1562982111859822594', 1123598821738675201, 1123598813738675201, '2022-08-26 09:55:49', 1123598821738675201, '2022-08-26 15:54:27', 1, '000000', 0), (1562981467727974401, '保养逾期', 'maintain-overdue', 'email', '1003', '1562981467010748418', 1123598821738675201, 1123598813738675201, '2022-08-26 09:53:15', 1123598821738675201, '2022-08-26 15:54:12', 1, '000000', 0), (1562980159205789697, '保养计划预警', 'maintenance-warning', 'email', '1003', '1562980158614392833', 1123598821738675201, 1123598813738675201, '2022-08-26 09:48:03', 1123598821738675201, '2022-08-26 15:53:59', 1, '000000', 0), (1562978286688129026, '保养计划', 'maintenance', 'email', '1003', '1562978285975097345', 1123598821738675201, 1123598813738675201, '2022-08-26 09:40:37', 1123598821738675201, '2022-08-26 17:42:20', 1, '000000', 0), (1563070352831115265, '保养计划预警', 'maintenance-warning', 'internalMessage', '1', '1563070351929339905', 1123598821738675201, 1123598813738675201, '2022-08-26 15:46:27', 1123598821738675201, '2022-08-26 15:46:27', 1, '000000', 0), (1563072050354024449, '维修申请', 'maintenance-apply', 'internalMessage', '1', '1563072049578078209', 1123598821738675201, 1123598813738675201, '2022-08-26 15:53:12', 1123598821738675201, '2022-08-26 15:53:12', 1, '000000', 0), (1563070227413037057, '保养计划', 'maintenance', 'internalMessage', '1', '1563070221285158913', 1123598821738675201, 1123598813738675201, '2022-08-26 15:45:57', 1123598821738675201, '2022-08-27 15:04:07', 1, '000000', 0), (1563071380024553474, '保养逾期', 'maintain-overdue', 'internalMessage', '1', '1563071379236024322', 1123598821738675201, 1123598813738675201, '2022-08-26 15:50:32', 1123598821738675201, '2022-08-26 15:50:32', 1, '000000', 0), (1563069998659891201, '保养计划', 'maintenance', 'weiXinQY', '1002', '1563069997951053825', 1123598821738675201, 1123598813738675201, '2022-08-26 15:45:03', 1123598821738675201, '2022-08-27 15:04:09', 1, '000000', 0), (1563070616724140033, '保养计划预警', 'maintenance-warning', 'weiXinQY', '1002', '1563070616002719746', 1123598821738675201, 1123598813738675201, '2022-08-26 15:47:30', 1123598821738675201, '2022-08-26 15:54:06', 1, '000000', 0), (1563070758751662082, '保养逾期', 'maintain-overdue', 'weiXinQY', '1002', '1563070758088962050', 1123598821738675201, 1123598813738675201, '2022-08-26 15:48:04', 1123598821738675201, '2022-08-26 15:54:16', 1, '000000', 0), (1563071963905224706, '维修申请', 'maintenance-apply', 'weiXinQY', '1002', '1563071963208970241', 1123598821738675201, 1123598813738675201, '2022-08-26 15:52:51', 1123598821738675201, '2022-08-26 15:54:29', 1, '000000', 0); -- 工位数据权限 INSERT INTO blade_scope_data (id, menu_id, resource_code, scope_name, scope_field, scope_class, scope_column, scope_type, scope_value, remark, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1572132151794466817, 1471285883018977281, 'workstation', '工位[全部]', '*', 'org.springblade.modules.cps.mapper.WorkstationMapper.listPage', 'create_dept', 1, '', NULL, 1565944210085425153, 1123598813738675201, '2022-09-20 15:54:48', 1565944210085425153, '2022-09-20 18:12:17', 1, 0); INSERT INTO blade_scope_data (id, menu_id, resource_code, scope_name, scope_field, scope_class, scope_column, scope_type, scope_value, remark, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1572132168408104961, 1471285883018977281, 'workstation', '工位[当前权限可见]', '*', 'org.springblade.modules.cps.mapper.WorkstationMapper.listPage', 'create_dept', 3, NULL, NULL, 1565944210085425153, 1123598813738675201, '2022-09-20 15:54:52', 1565944210085425153, '2022-09-20 15:54:52', 1, 0); INSERT INTO blade_scope_data (id, menu_id, resource_code, scope_name, scope_field, scope_class, scope_column, scope_type, scope_value, remark, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1572132168806563842, 1471285883018977281, 'workstation', '工位[当前及子级权限可见]', '*', 'org.springblade.modules.cps.mapper.WorkstationMapper.listPage', 'create_dept', 4, NULL, NULL, 1565944210085425153, 1123598813738675201, '2022-09-20 15:54:53', 1565944210085425153, '2022-09-20 15:54:53', 1, 0); -- 工位数据权限 关联表 CREATE TABLE blade_dept_scope ( "id" bigint NOT NULL, "scope_category" int, "scope_id" bigint, "dept_id" bigint, not cluster primary key ("id") ); comment on table "blade_dept_scope" is '数据权限关联表'; comment on COLUMN "blade_dept_scope"."id" is '主键'; comment on COLUMN "blade_dept_scope"."scope_category" is '权限类型(1:数据权限、2:接口权限)'; comment on COLUMN "blade_dept_scope"."scope_id" is '''权限id'; comment on COLUMN "blade_dept_scope"."dept_id" is '权限id'; -- 自定义配置菜单 INSERT INTO blade_menu(id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1589461675618177026, 1504290968008056833, 'custom_configuration', '自定义配置', 'custom_configuration', '/configuration/custom/index', '', 1, 1, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1599950099730957314, 1589461675618177026, 'custom_template_detail', '模板详情', 'button', '', '', 1, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1599950099730957315, 1589461675618177026, 'custom_template_insert', '模板新增', 'button', '', '', 2, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1599950099730957316, 1589461675618177026, 'custom_template_update', '模板修改', 'button', '', '', 3, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1599950099730957317, 1589461675618177026, 'custom_template_remove', '模板删除', 'button', '', '', 4, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1599950099730957318, 1589461675618177026, 'custom_template_field_list', '字段列表', 'button', '', '', 5, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1599950099730957319, 1589461675618177026, 'custom_template_field_insert', '字段新增', 'button', '', '', 6, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1599950099730957320, 1589461675618177026, 'custom_template_field_update', '字段编辑', 'button', '', '', 7, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1599950099730957321, 1589461675618177026, 'custom_template_field_remove', '字段删除', 'button', '', '', 8, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1599950099730957322, 1589461675618177026, 'custom_template_relation_insert', '关联提交', 'button', '', '', 9, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1599950099730957323, 1589461675618177026, 'custom_template_relation_remove', '关联删除', 'button', '', '', 10, 2, 0, 1, '', 0, 'CPS', 1); INSERT INTO blade_menu (id, parent_id, code, name, alias, path, source, sort, category, action, is_open, remark, is_deleted, belong_application, keep_alive) VALUES (1599950099730957324, 1589461675618177026, 'custom_template_relation_sort', '关联排序', 'button', '', '', 11, 2, 0, 1, '', 0, 'CPS', 1); -- 自定义字段相关 CREATE TABLE "blade_custom_field_option" ( "id" BIGINT NOT NULL, "tenant_id" VARCHAR(12) DEFAULT '000000', "field_id" BIGINT, "value" VARCHAR(255), "parent_id" BIGINT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_custom_field_option" IS '字段选项值表'; COMMENT ON COLUMN "blade_custom_field_option"."field_id" IS '自定义字段表id'; COMMENT ON COLUMN "blade_custom_field_option"."parent_id" IS '父节点id(级联选择器时)'; COMMENT ON COLUMN "blade_custom_field_option"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "blade_custom_field_option"."value" IS '选项值'; CREATE INDEX "field_index" ON "blade_custom_field_option" ("field_id" ASC) STORAGE(ON "MAIN", CLUSTERBTR); CREATE UNIQUE INDEX "INDEX202031166641800" ON "blade_custom_field_option" ("id" ASC) STORAGE(ON "MAIN", CLUSTERBTR); CREATE TABLE "blade_custom_field_relation" ( "id" BIGINT NOT NULL, "tenant_id" VARCHAR(12) DEFAULT '000000', "template_id" BIGINT, "field_id" BIGINT, "sort" INT, "config_type" TINYINT, "must_field" TINYINT DEFAULT 0, "import_field" TINYINT DEFAULT 1, "import_sort" INT, "status" INT DEFAULT 1, "is_deleted" INT, "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), NOT CLUSTER PRIMARY KEY ("id"), CONSTRAINT "uniqueIndex" UNIQUE ("template_id", "field_id", "config_type", "is_deleted"), CHECK ("status" >= 0) ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_custom_field_relation" IS '模板与字段关系表'; COMMENT ON COLUMN "blade_custom_field_relation"."config_type" IS '配置类型 1:新建页,2:编辑页,3:查看页,4:工单'; COMMENT ON COLUMN "blade_custom_field_relation"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_custom_field_relation"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_custom_field_relation"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_custom_field_relation"."field_id" IS '字段id'; COMMENT ON COLUMN "blade_custom_field_relation"."import_field" IS '是否是导入字段 0否 1是'; COMMENT ON COLUMN "blade_custom_field_relation"."import_sort" IS '导入时排序'; COMMENT ON COLUMN "blade_custom_field_relation"."must_field" IS '是否必填 0否 1是'; COMMENT ON COLUMN "blade_custom_field_relation"."sort" IS '排序'; COMMENT ON COLUMN "blade_custom_field_relation"."status" IS '状态: 1为启动,0为停用'; COMMENT ON COLUMN "blade_custom_field_relation"."template_id" IS '模板id'; COMMENT ON COLUMN "blade_custom_field_relation"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "blade_custom_field_relation"."update_time" IS '更新时间'; COMMENT ON COLUMN "blade_custom_field_relation"."update_user" IS '更新人'; CREATE UNIQUE INDEX "INDEX202029151523900" ON "blade_custom_field_relation" ("id" ASC) STORAGE(ON "MAIN", CLUSTERBTR); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881347, '000000', 1590984632397881346, 1593400284007239680, 1, 1, 0, 1, 4, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881348, '000000', 1590984632397881346, 1593400284007239681, 2, 1, 0, 1, 1, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881349, '000000', 1590984632397881346, 1593400284007239682, 3, 1, 1, 1, 2, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881350, '000000', 1590984632397881346, 1593400284007239683, 4, 1, 1, 1, 3, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881351, '000000', 1590984632397881346, 1593400284007239684, 5, 1, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881352, '000000', 1590984632397881346, 1593400284007239685, 6, 1, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881353, '000000', 1590984632397881346, 1593400284007239686, 7, 1, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881354, '000000', 1590984632397881346, 1593400284007239687, 8, 1, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881355, '000000', 1590984632397881346, 1593400284007239688, 9, 1, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881356, '000000', 1590984632397881346, 1593400284007239680, 1, 2, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-21 10:24:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881357, '000000', 1590984632397881346, 1593400284007239681, 2, 2, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881358, '000000', 1590984632397881346, 1593400284007239682, 3, 2, 1, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881359, '000000', 1590984632397881346, 1593400284007239683, 4, 2, 1, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881360, '000000', 1590984632397881346, 1593400284007239684, 5, 2, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881361, '000000', 1590984632397881346, 1593400284007239685, 6, 2, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881362, '000000', 1590984632397881346, 1593400284007239686, 7, 2, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881363, '000000', 1590984632397881346, 1593400284007239687, 8, 2, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881364, '000000', 1590984632397881346, 1593400284007239688, 9, 2, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881365, '000000', 1590984632397881346, 1593400284007239682, 1, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-21 10:24:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881366, '000000', 1590984632397881346, 1593400284007239681, 2, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881367, '000000', 1590984632397881346, 1593400284007239683, 3, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881368, '000000', 1590984632397881346, 1593400284007239684, 4, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881369, '000000', 1590984632397881346, 1593400284007239685, 5, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881370, '000000', 1590984632397881346, 1593400284007239686, 6, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881371, '000000', 1590984632397881346, 1593400284007239689, 7, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881372, '000000', 1590984632397881346, 1593400284007239690, 8, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881373, '000000', 1590984632397881346, 1593400284007239683, 1, 5, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881374, '000000', 1590984632397881346, 1593400284007239685, 2, 5, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881375, '000000', 1590984632397881346, 1593400284007239687, 3, 5, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881376, '000000', 1590984632397881346, 1593400284007239691, 4, 5, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881377, '000000', 1590984632397881347, 1593400284007239692, 1, 1, 1, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881378, '000000', 1590984632397881347, 1593400284007239693, 2, 1, 0, 1, 1, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881379, '000000', 1590984632397881347, 1593400284007239694, 3, 1, 0, 1, 10, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881380, '000000', 1590984632397881347, 1593400284007239695, 4, 1, 1, 1, 2, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881381, '000000', 1590984632397881347, 1593400284007239702, 5, 1, 1, 1, 3, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881382, '000000', 1590984632397881347, 1593400284007239696, 6, 1, 1, 1, 4, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881383, '000000', 1590984632397881347, 1593400284007239697, 7, 1, 1, 1, 5, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881385, '000000', 1590984632397881347, 1593400284007239698, 9, 1, 1, 1, 7, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881386, '000000', 1590984632397881347, 1593400284007239699, 10, 1, 1, 1, 8, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881387, '000000', 1590984632397881347, 1593400284007239700, 11, 1, 1, 1, 9, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881388, '000000', 1590984632397881347, 1593400284007239701, 12, 1, 0, 1, 11, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881389, '000000', 1590984632397881347, 1593400284007239692, 1, 2, 1, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881390, '000000', 1590984632397881347, 1593400284007239693, 2, 2, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881391, '000000', 1590984632397881347, 1593400284007239694, 3, 2, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881392, '000000', 1590984632397881347, 1593400284007239695, 4, 2, 1, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881393, '000000', 1590984632397881347, 1593400284007239702, 5, 2, 1, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881394, '000000', 1590984632397881347, 1593400284007239696, 6, 2, 1, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881395, '000000', 1590984632397881347, 1593400284007239697, 7, 2, 1, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881397, '000000', 1590984632397881347, 1593400284007239698, 9, 2, 1, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881398, '000000', 1590984632397881347, 1593400284007239699, 10, 2, 1, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881399, '000000', 1590984632397881347, 1593400284007239700, 11, 2, 1, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881400, '000000', 1590984632397881347, 1593400284007239701, 12, 2, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881401, '000000', 1590984632397881347, 1593400284007239693, 1, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881402, '000000', 1590984632397881347, 1593400284007239694, 2, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881403, '000000', 1590984632397881347, 1593400284007239706, 3, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881404, '000000', 1590984632397881347, 1593400284007239707, 4, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881405, '000000', 1590984632397881347, 1593400284007239703, 5, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881406, '000000', 1590984632397881347, 1593400284007239701, 8, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881407, '000000', 1590984632397881347, 1593400284007239698, 10, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881408, '000000', 1590984632397881347, 1593400284007239706, 1, 5, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881409, '000000', 1590984632397881347, 1593400284007239695, 2, 5, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881410, '000000', 1590984632397881347, 1593400284007239708, 3, 5, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881411, '000000', 1590984632397881347, 1593400284007239693, 4, 5, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881412, '000000', 1590984632397881347, 1593400284007239694, 5, 5, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881413, '000000', 1590984632397881347, 1593400284007239709, 6, 5, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881414, '000000', 1590984632397881347, 1593400284007239701, 7, 5, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881415, '000000', 1590984632397881347, 1593400284007239699, 8, 5, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881416, '000000', 1590984632397881347, 1593400284007239700, 9, 5, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881417, '000000', 1590984632397881347, 1593400284007239708, 7, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881418, '000000', 1590984632397881347, 1593400284007239710, 9, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881419, '000000', 1590984632397881347, 1593400284007239696, 11, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881421, '000000', 1590984632397881347, 1593400284007239699, 13, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881422, '000000', 1590984632397881347, 1593400284007239700, 14, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881423, '000000', 1590984632397881347, 1593400284007239711, 15, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881424, '000000', 1590984632397881347, 1593400284007239712, 16, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881425, '000000', 1590984632397881347, 1593400284007239713, 17, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881426, '000000', 1590984632397881347, 1593400284007239714, 18, 3, 0, 0, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-11-11 18:03:48', 1123598821738675201, '2022-11-11 18:03:48'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1599948206749356034, '000000', 1590984632397881347, 1593400284007239704, 17, 1, 0, 1, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-12-06 10:05:53', 1123598821738675201, '2022-12-06 10:05:53'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1599948230732386305, '000000', 1590984632397881347, 1593400284007239704, 5, 2, 0, 1, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-12-06 10:05:58', 1123598821738675201, '2022-12-06 10:05:58'); insert into "blade_custom_field_relation" ("id", "tenant_id", "template_id", "field_id", "sort", "config_type", "must_field", "import_field", "import_sort", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1599948331521511426, '000000', 1590984632397881347, 1593400284007239705, 12, 3, 0, 1, null, 1, 0, 1123598821738675201, 1123598813738675201, '2022-12-06 10:06:22', 1123598821738675201, '2022-12-06 10:06:22'); CREATE TABLE "blade_custom_template" ( "id" BIGINT NOT NULL, "tenant_id" VARCHAR(12) DEFAULT '000000', "template_name" VARCHAR(32), "business_type" TINYINT, "status" INT DEFAULT 0, "default_template" TINYINT DEFAULT 0, "is_deleted" INT, "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), NOT CLUSTER PRIMARY KEY ("id"), CHECK ("status" >= 0) ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_custom_template" IS '自定义字段模板表'; COMMENT ON COLUMN "blade_custom_template"."business_type" IS '业务类型 1:计划工单,2:产品'; COMMENT ON COLUMN "blade_custom_template"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_custom_template"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_custom_template"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_custom_template"."default_template" IS '是否默认 1默认'; COMMENT ON COLUMN "blade_custom_template"."status" IS '状态: 1为启动,0为停用'; COMMENT ON COLUMN "blade_custom_template"."template_name" IS '计划类型名称'; COMMENT ON COLUMN "blade_custom_template"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "blade_custom_template"."update_time" IS '更新时间'; COMMENT ON COLUMN "blade_custom_template"."update_user" IS '更新人'; CREATE UNIQUE INDEX "INDEX202027513631500" ON "blade_custom_template" ("id" ASC) STORAGE(ON "MAIN", CLUSTERBTR); insert into "blade_custom_template" ("id", "tenant_id", "template_name", "business_type", "status", "default_template", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881346, '000000', '产品默认模板', 2, 1, 1, 0, null, null, '2022-11-11 16:27:50', null, '2022-11-11 16:27:50'); insert into "blade_custom_template" ("id", "tenant_id", "template_name", "business_type", "status", "default_template", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time") values (1590984632397881347, '000000', '系统默认', 1, 1, 1, 0, null, null, '2022-11-11 16:27:50', null, '2022-11-11 16:27:50'); CREATE TABLE "blade_custom_template_business" ( "id" BIGINT NOT NULL, "template_id" BIGINT, "relation_id" BIGINT, "business_type" TINYINT, NOT CLUSTER PRIMARY KEY ("id") ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_custom_template_business" IS '自定义模板关联业务表'; COMMENT ON COLUMN "blade_custom_template_business"."business_type" IS '业务类型 1:计划工单,2:产品'; CREATE UNIQUE INDEX "INDEX202027008714700" ON "blade_custom_template_business" ("id" ASC) STORAGE(ON "MAIN", CLUSTERBTR); CREATE TABLE "blade_custom_template_field" ( "id" BIGINT NOT NULL, "tenant_id" VARCHAR(12) DEFAULT '000000', "field_code" VARCHAR(32), "modify_field_code" VARCHAR(32), "query_field_code" VARCHAR(32), "field_name" VARCHAR(32), "field_description" VARCHAR(255), "field_type" TINYINT, "default_value" VARCHAR(255), "property_json" TEXT, "add_show" TINYINT, "update_show" TINYINT, "view_show" TINYINT, "support_update" TINYINT, "support_query" TINYINT DEFAULT 1, "support_import" TINYINT DEFAULT 1, "checked_import" INT, "import_sort" INT, "system_field" TINYINT DEFAULT 0, "sys_field_must" TINYINT, "business_type" TINYINT, "status" INT DEFAULT 1, "is_deleted" INT, "create_user" BIGINT, "create_dept" BIGINT, "create_time" TIMESTAMP(0), "update_user" BIGINT, "update_time" TIMESTAMP(0), "must_import" INT, "support_export" INT, NOT CLUSTER PRIMARY KEY ("id"), CONSTRAINT "unique_index" UNIQUE ("business_type", "field_code", "is_deleted"), CHECK ("status" >= 0) ) STORAGE(ON "MAIN", CLUSTERBTR); COMMENT ON TABLE "blade_custom_template_field" IS '自定义字段表'; COMMENT ON COLUMN "blade_custom_template_field"."add_show" IS '是否新增页展示 0否 1是'; COMMENT ON COLUMN "blade_custom_template_field"."business_type" IS '业务类型 1:计划工单,2:产品'; COMMENT ON COLUMN "blade_custom_template_field"."checked_import" IS '是否勾选为导入0否 1是'; COMMENT ON COLUMN "blade_custom_template_field"."create_dept" IS '创建部门'; COMMENT ON COLUMN "blade_custom_template_field"."create_time" IS '创建时间'; COMMENT ON COLUMN "blade_custom_template_field"."create_user" IS '创建人'; COMMENT ON COLUMN "blade_custom_template_field"."default_value" IS '默认值'; COMMENT ON COLUMN "blade_custom_template_field"."field_code" IS '字段编码'; COMMENT ON COLUMN "blade_custom_template_field"."field_description" IS '描述提示文字'; COMMENT ON COLUMN "blade_custom_template_field"."field_name" IS '字段名'; COMMENT ON COLUMN "blade_custom_template_field"."field_type" IS '字段类型,暂为: 1:输入框,2:数字输入框,3:多行文本,4:日期,5:单选,6:多选,7:下拉选择器,8:级联选择器,9:业务字段'; COMMENT ON COLUMN "blade_custom_template_field"."import_sort" IS '导入排序'; COMMENT ON COLUMN "blade_custom_template_field"."modify_field_code" IS '系统默认字段时编辑时字段编码'; COMMENT ON COLUMN "blade_custom_template_field"."must_import" IS '导入是否必填'; COMMENT ON COLUMN "blade_custom_template_field"."property_json" IS '类型特有json,前后端协定'; COMMENT ON COLUMN "blade_custom_template_field"."query_field_code" IS '系统默认字段时查询时字段编码'; COMMENT ON COLUMN "blade_custom_template_field"."status" IS '状态: 1为启动,0为停用'; COMMENT ON COLUMN "blade_custom_template_field"."support_export" IS '是否支持导出'; COMMENT ON COLUMN "blade_custom_template_field"."support_import" IS '是否支持导入 0否 1是'; COMMENT ON COLUMN "blade_custom_template_field"."support_query" IS '是否支持查询 0否 1是'; COMMENT ON COLUMN "blade_custom_template_field"."support_update" IS '是否支持编辑 0否 1是'; COMMENT ON COLUMN "blade_custom_template_field"."sys_field_must" IS '系统字段是否初始必填:0否 1是'; COMMENT ON COLUMN "blade_custom_template_field"."system_field" IS '是否是系统字段 0 否 1是'; COMMENT ON COLUMN "blade_custom_template_field"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "blade_custom_template_field"."update_show" IS '是否编辑页展示 0否 1是'; COMMENT ON COLUMN "blade_custom_template_field"."update_time" IS '更新时间'; COMMENT ON COLUMN "blade_custom_template_field"."update_user" IS '更新人'; COMMENT ON COLUMN "blade_custom_template_field"."view_show" IS '是否查看页展示 0否 1是'; CREATE UNIQUE INDEX "INDEX469793524603100" ON "blade_custom_template_field" ("id" ASC) STORAGE(ON "MAIN", CLUSTERBTR); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239680, '000000', 'parentId', 'parentId', 'parentId', '上级产品', '请选择上级产品', 10, null, 'parent_id', 1, 1, 0, 1, 0, 1, null, 4, 1, 0, 2, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239681, '000000', 'code', 'code', 'code', '产品编号', '保存时系统自动生成', 10, null, 'code', 1, 1, 1, 0, 0, 1, null, 1, 1, 1, 2, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 1, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239682, '000000', 'name', 'name', 'name', '产品名称', '请输入产品名称', 10, null, 'name', 1, 1, 1, 1, 0, 1, null, 2, 1, 1, 2, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 1, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239683, '000000', 'typeName', 'typeId', 'typeId', '产品类型', '请选择', 10, null, 'type_id', 1, 1, 1, 1, 1, 1, null, 3, 1, 1, 2, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 1, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239684, '000000', 'unit', 'unit', 'unit', '计量单位', '请输入计量单位', 10, null, 'unit', 1, 1, 1, 1, 0, 1, null, null, 1, 0, 2, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239685, '000000', 'standardModel', 'standardModel', 'standardModel', '规格型号', '请输入规格型号', 10, null, 'standard_model', 1, 1, 1, 1, 1, 1, null, null, 1, 0, 2, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239686, '000000', 'description', 'description', 'description', '产品描述', '请输入描述', 10, null, 'description', 1, 1, 1, 1, 0, 1, null, null, 1, 0, 2, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239687, '000000', 'status', 'status', 'status', '状态', '请选择状态', 10, null, 'status', 1, 1, 0, 1, 1, 0, null, null, 1, 0, 2, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239688, '000000', 'documents', 'documents', 'documents', '产品文档', '请上传产品文档', 10, null, 'documents', 1, 1, 0, 1, 0, 0, null, null, 1, 0, 2, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239689, '000000', 'processRoute', 'processRoute', 'processRoute', '工艺路线', '请选择工艺路线', 10, null, null, 0, 0, 1, 0, 0, 1, null, null, 1, 0, 2, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239690, '000000', 'bomList', 'bomList', 'bomList', 'BOM清单', null, 10, null, null, 0, 0, 1, 0, 0, 1, null, null, 1, 0, 2, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239691, '000000', 'keyWord', 'keyWord', 'keyWord', '编号/名称', null, 10, null, null, 0, 0, 0, 0, 1, 1, null, null, 1, 0, 2, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239692, '000000', 'typeId', 'typeId', 'typeId', '计划类型', '请选择计划类型', 10, null, 'type_id', 1, 1, 1, 0, 0, 1, null, 12, 1, 1, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239693, '000000', 'code', 'code', 'code', '计划编号', '由编码规则自动生成', 10, null, 'code', 1, 1, 1, 0, 1, 1, null, 1, 1, 1, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 1, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239694, '000000', 'indentCode', 'indentCode', 'indentCode', '订单编号', '请输入订单编号', 10, null, 'indent_code', 1, 1, 1, 1, 1, 1, null, 10, 1, 0, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239695, '000000', 'categoryLabel', 'category', 'category', '计划属性', '选择计划属性', 10, null, 'category', 1, 1, 1, 0, 1, 1, null, 2, 1, 1, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 1, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239696, '000000', 'craftId', 'craftId', 'craftId', '工艺路线', '请选择工艺路线', 10, null, 'craft_id', 1, 1, 1, 0, 0, 1, null, 4, 1, 1, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 1, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239697, '000000', 'craftVersion', 'craftVersion', 'craftVersion', '工艺版本', '请选择工艺路线', 10, null, 'craft_version', 1, 1, 0, 0, 0, 1, null, 5, 1, 1, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 1, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239698, '000000', 'planNum', 'planNum', 'planNum', '计划数量', null, 10, null, 'plan_num', 1, 1, 1, 1, 0, 1, null, 7, 1, 1, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 1, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239699, '000000', 'planStartTime', 'planStartTime', 'planStartTime', '计划开始时间', '开始日期', 10, null, 'plan_start_time', 1, 1, 1, 1, 1, 1, null, 8, 1, 1, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 1, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239700, '000000', 'planEndTime', 'planEndTime', 'planEndTime', '计划结束时间', '结束日期', 10, null, 'plan_end_time', 1, 1, 1, 1, 1, 1, null, 9, 1, 1, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 1, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239701, '000000', 'standardModel', 'standardModel', 'standardModel', '规格型号', '请输入规格型号', 10, null, 'standard_model', 1, 1, 1, 1, 1, 1, null, 11, 1, 0, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239702, '000000', 'productId', 'productId', 'productId', '产品', '请选择产品', 10, null, 'product_id', 1, 1, 0, 0, 0, 1, null, null, 1, 1, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239703, '000000', 'productCode', 'productCode', 'productCode', '产品编号', null, 10, null, 'product_code', 0, 0, 1, 0, 0, 1, null, null, 1, 1, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239704, '000000', 'bomId', 'bomId', 'bomId', 'BOM清单', '请选择BOM版本', 10, null, 'bom_id', 1, 1, 0, 0, 0, 1, null, null, 1, 0, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239705, '000000', 'bomVersion', 'bomVersion', 'bomVersion', 'BOM清单', '', 10, null, 'bom_version', 0, 0, 1, 0, 0, 1, null, 6, 1, 0, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239706, '000000', 'planStatusLabel', 'planStatus', 'planStatus', '计划状态', null, 10, null, 'plan_status', 0, 0, 1, 0, 1, 1, null, null, 1, 0, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239707, '000000', 'planProgress', 'planProgress', 'planProgress', '计划进度', null, 10, null, null, 0, 0, 1, 0, 0, 1, null, null, 1, 0, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239708, '000000', 'productTypeLabel', 'productType', 'productTypeIds', '产品类型', null, 10, null, null, 0, 0, 1, 1, 1, 1, null, null, 1, 0, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239709, '000000', 'productName', 'productName', 'productName', '产品名称', null, 10, null, 'product_name', 0, 0, 0, 1, 1, 0, null, null, 1, 0, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239710, '000000', 'reportSituation', 'reportSituation', 'reportSituation', '报工情况', null, 10, null, null, 0, 0, 1, 0, 0, 0, null, null, 1, 0, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239711, '000000', 'reportNum', 'reportNum', 'reportNum', '报工数量(件)', null, 10, null, 'report_num', 0, 0, 1, 0, 0, 0, null, null, 1, 0, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239712, '000000', 'qualifyNum', 'qualifyNum', 'qualifyNum', '合格数量(件)', null, 10, null, 'qualify_num', 0, 0, 1, 0, 0, 0, null, null, 1, 0, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239713, '000000', 'startTime', 'startTime', 'startTime', '实际开始时间', null, 10, null, 'start_time', 0, 0, 1, 0, 0, 0, null, null, 1, 0, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1593400284007239714, '000000', 'endTime', 'endTime', 'endTime', '实际结束时间', null, 10, null, 'end_time', 0, 0, 1, 0, 0, 0, null, null, 1, 0, 1, 1, 0, null, 1123598813738675201, '2022-11-18 08:26:46.000000', 1123598821738675201, '2022-11-18 08:26:46.000000', 0, 1); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1598975007067869184, '000000', 'code_1598975007067869184', 'code_1598975007067869184', 'code_1598975007067869184', '产品输入1111', 'weqeqw', 1, '啊实打实的', '{"maxlength":"10","formatName":""}', 1, 1, 1, 1, 1, 1, null, null, 0, null, 2, 1, 0, null, 1123598813738675201, '2022-12-03 17:38:44.000000', 1123598821738675201, '2022-12-03 17:38:44.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1598975326455730176, '000000', 'code_1598975326455730176', 'code_1598975326455730176', 'code_1598975326455730176', '产品多选111', '产品多选12312', 6, '', '{"selectOption":[],"direction":0}', 1, 1, 1, 1, 1, 1, null, null, 0, null, 2, 1, 0, null, 1123598813738675201, '2022-12-03 17:40:00.000000', 1123598821738675201, '2022-12-03 17:40:00.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1598975444504416256, '000000', 'code_1598975444504416256', 'code_1598975444504416256', 'code_1598975444504416256', '产品业务人员123', '12312312阿松大啊实打实', 9, '', null, 1, 1, 1, 1, 1, 1, null, null, 0, null, 2, 1, 0, null, 1123598813738675201, '2022-12-03 17:40:28.000000', 1123598821738675201, '2022-12-03 17:40:28.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1598977075400806400, '000000', 'code_1598977075400806400', 'code_1598977075400806400', 'code_1598977075400806400', '扩展1', '', 1, '', '{"maxlength":20,"formatName":""}', 1, 1, 1, 1, 1, 1, null, null, 0, null, 1, 1, 0, null, 1123598813738675201, '2022-12-03 17:46:57.000000', 1123598821738675201, '2022-12-03 17:46:57.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599279199556866048, '000000', 'code_1599279199556866048', 'code_1599279199556866048', 'code_1599279199556866048', '产品数字百分比', '拜访扽比', 2, '', '{"format":1,"saveDecimalNum":0,"isShowPercentage":false,"rangeMin":0,"rangeMax":9999}', 1, 1, 1, 1, 1, 1, null, null, 0, null, 2, 1, 0, null, 1123598813738675201, '2022-12-04 13:47:29.000000', 1123598821738675201, '2022-12-04 13:47:29.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599279547168198656, '000000', 'code_1599279547168198656', 'code_1599279547168198656', 'code_1599279547168198656', '产品级联', '级联选择', 8, '', '{}', 1, 1, 1, 1, 1, 1, null, null, 0, null, 2, 1, 0, null, 1123598813738675201, '2022-12-04 13:48:52.000000', 1123598821738675201, '2022-12-04 13:48:52.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599282266771689472, '000000', 'code_1599282266771689472', 'code_1599282266771689472', 'code_1599282266771689472', '计划输入aaa', '计划输入', 1, '输入默认值', '{"maxlength":"10","formatName":""}', 1, 1, 1, 1, 1, 1, null, null, 0, null, 1, 1, 0, null, 1123598813738675201, '2022-12-04 13:59:40.000000', 1123598821738675201, '2022-12-04 13:59:40.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599282367489511424, '000000', 'code_1599282367489511424', 'code_1599282367489511424', 'code_1599282367489511424', '计划手机号aaa', '啊啊啊啊', 1, '', '{"maxlength":"10","formatName":"mobile"}', 1, 1, 1, 1, 1, 1, null, null, 0, null, 1, 1, 0, null, 1123598813738675201, '2022-12-04 14:00:04.000000', 1123598821738675201, '2022-12-04 14:00:04.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599282452780683264, '000000', 'code_1599282452780683264', 'code_1599282452780683264', 'code_1599282452780683264', '计划日期选择aaa', '阿斯顿撒', 4, '', '{"val":{"label":"年-月-日 时:分:秒","value":"datetime","format":"yyyy-MM-dd HH:mm:ss"},"type":"yyyy-MM-dd HH:mm:ss"}', 1, 1, 1, 1, 1, 1, null, null, 0, null, 1, 1, 0, null, 1123598813738675201, '2022-12-04 14:00:25.000000', 1123598821738675201, '2022-12-04 14:00:25.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599282608943009792, '000000', 'code_1599282608943009792', 'code_1599282608943009792', 'code_1599282608943009792', '计划下拉aaa', '阿斯顿发生', 7, '', '{}', 1, 1, 1, 1, 1, 1, null, null, 0, null, 1, 1, 0, null, 1123598813738675201, '2022-12-04 14:01:02.000000', 1123598821738675201, '2022-12-04 14:01:02.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599605438171713536, '000000', 'code_1599605438171713536', 'code_1599605438171713536', 'code_1599605438171713536', '数值字段', '', 2, '', '{"format":1,"saveDecimalNum":"2","isShowPercentage":false,"rangeMin":0,"rangeMax":9999}', 1, 1, 1, 1, 1, 1, null, null, 0, null, 2, 1, 0, null, 1123598813738675201, '2022-12-05 11:23:50.000000', 1123598821738675201, '2022-12-05 11:23:50.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599606033825796096, '000000', 'code_1599606033825796096', 'code_1599606033825796096', 'code_1599606033825796096', 'sadfasd', '', 2, '', '{"format":0,"saveDecimalNum":"3","isShowPercentage":true,"rangeMin":0,"rangeMax":9999}', 1, 0, 1, 1, 1, 1, null, null, 0, null, 2, 1, 0, null, 1123598813738675201, '2022-12-05 11:26:12.000000', 1123598821738675201, '2022-12-05 11:26:12.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599606372725559296, '000000', 'code_1599606372725559296', 'code_1599606372725559296', 'code_1599606372725559296', 'dsfhdghgfhfg', '', 2, '', '{"format":0,"saveDecimalNum":"22","isShowPercentage":true,"rangeMin":0,"rangeMax":9999}', 1, 1, 1, 1, 1, 1, null, null, 0, null, 2, 1, 0, null, 1123598813738675201, '2022-12-05 11:27:33.000000', 1123598821738675201, '2022-12-05 11:27:33.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599607500326440960, '000000', 'code_1599607500326440960', 'code_1599607500326440960', 'code_1599607500326440960', '扩展字段测试', '', 2, '', '{"format":1,"saveDecimalNum":"2","isShowPercentage":false,"rangeMin":0,"rangeMax":9999}', 1, 1, 1, 1, 1, 1, null, null, 0, null, 2, 1, 0, null, 1123598813738675201, '2022-12-05 11:32:02.000000', 1123598821738675201, '2022-12-05 11:32:02.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599677558620819456, '000000', 'code_1599677558620819456', 'code_1599677558620819456', 'code_1599677558620819456', '数值', '', 2, '', '{"format":0,"saveDecimalNum":0,"isShowPercentage":false,"rangeMin":0,"rangeMax":"1000000"}', 1, 1, 1, 1, 1, 1, null, null, 0, null, 1, 1, 0, null, 1123598813738675201, '2022-12-05 16:10:25.000000', 1123598821738675201, '2022-12-05 16:10:25.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599678708703170560, '000000', 'code_1599678708703170560', 'code_1599678708703170560', 'code_1599678708703170560', '产品级联2222', '产品级联2222222', 8, '', '{}', 1, 1, 1, 1, 1, 1, null, null, 0, null, 2, 1, 0, null, 1123598813738675201, '2022-12-05 16:14:59.000000', 1123598821738675201, '2022-12-05 16:14:59.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599679175948636160, '000000', 'code_1599679175948636160', 'code_1599679175948636160', 'code_1599679175948636160', 'aa', 'aa', 6, '', '{"selectOption":[],"direction":0}', 1, 0, 1, 1, 1, 1, null, null, 0, null, 2, 1, 0, null, 1123598813738675201, '2022-12-05 16:16:51.000000', 1123598821738675201, '2022-12-05 16:16:51.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599683508027133952, '000000', 'code_1599683508027133952', 'code_1599683508027133952', 'code_1599683508027133952', 'dsgfdg', '', 6, '', '{"selectOption":[],"direction":0}', 1, 0, 1, 1, 1, 1, null, null, 0, null, 2, 1, 0, null, 1123598813738675201, '2022-12-05 16:34:04.000000', 1123598821738675201, '2022-12-05 16:34:04.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599683625773830144, '000000', 'code_1599683625773830144', 'code_1599683625773830144', 'code_1599683625773830144', 'sdfghf', '', 5, '', '{"selectOption":"","direction":0}', 1, 0, 1, 1, 1, 1, null, null, 0, null, 2, 1, 0, null, 1123598813738675201, '2022-12-05 16:34:32.000000', 1123598821738675201, '2022-12-05 16:34:32.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599687224054648832, '000000', 'code_1599687224054648832', 'code_1599687224054648832', 'code_1599687224054648832', '拣货号', '', 6, '', '{"selectOption":["1599687224067231744"],"direction":0}', 1, 0, 1, 1, 1, 1, null, null, 0, null, 1, 1, 1670230628, null, 1123598813738675201, '2022-12-05 16:48:50.000000', 1123598821738675201, '2022-12-05 16:57:09.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599688845669044224, '000000', 'code_1599688845669044224', 'code_1599688845669044224', 'code_1599688845669044224', '下拉测试', '', 6, '', '{"selectOption":["1599688845669044225"],"direction":0}', 1, 0, 1, 1, 1, 1, null, null, 0, null, 1, 1, 1670230632, null, 1123598813738675201, '2022-12-05 16:55:16.000000', 1123598821738675201, '2022-12-05 16:57:13.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599689521543385088, '000000', 'code_1599689521543385088', 'code_1599689521543385088', 'code_1599689521543385088', '下拉测试', '', 8, '', '{}', 1, 0, 1, 1, 1, 1, null, null, 0, null, 1, 1, 0, null, 1123598813738675201, '2022-12-05 16:57:57.000000', 1123598821738675201, '2022-12-05 16:57:57.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599689921679986688, '000000', 'code_1599689921679986688', 'code_1599689921679986688', 'code_1599689921679986688', '进度比', '', 2, '', '{"format":1,"saveDecimalNum":0,"isShowPercentage":false,"rangeMin":0,"rangeMax":9999}', 1, 0, 1, 1, 1, 1, null, null, 0, null, 1, 1, 0, null, 1123598813738675201, '2022-12-05 16:59:33.000000', 1123598821738675201, '2022-12-05 16:59:33.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599689988235202560, '000000', 'code_1599689988235202560', 'code_1599689988235202560', 'code_1599689988235202560', '数字千分', '', 2, '', '{"format":0,"saveDecimalNum":0,"isShowPercentage":true,"rangeMin":0,"rangeMax":"1000000000"}', 1, 0, 1, 1, 1, 1, null, null, 0, null, 1, 1, 0, null, 1123598813738675201, '2022-12-05 16:59:49.000000', 1123598821738675201, '2022-12-05 16:59:49.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599690444420288512, '000000', 'code_1599690444420288512', 'code_1599690444420288512', 'code_1599690444420288512', 'dfgh', '', 8, '', '{}', 1, 0, 1, 1, 1, 1, null, null, 0, null, 2, 1, 0, null, 1123598813738675201, '2022-12-05 17:01:38.000000', 1123598821738675201, '2022-12-05 17:01:38.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599690570098413568, '000000', 'code_1599690570098413568', 'code_1599690570098413568', 'code_1599690570098413568', 'sadfasdf', '', 8, '', '{}', 1, 0, 1, 1, 1, 1, null, null, 0, null, 2, 1, 0, null, 1123598813738675201, '2022-12-05 17:02:08.000000', 1123598821738675201, '2022-12-05 17:02:08.000000', 0, 0); INSERT INTO "blade_custom_template_field"("id", "tenant_id", "field_code", "modify_field_code", "query_field_code", "field_name", "field_description", "field_type", "default_value", "property_json", "add_show", "update_show", "view_show", "support_update", "support_query", "support_import", "checked_import", "import_sort", "system_field", "sys_field_must", "business_type", "status", "is_deleted", "create_user", "create_dept", "create_time", "update_user", "update_time", "must_import", "support_export") VALUES (1599693072671838208, '000000', 'code_1599693072671838208', 'code_1599693072671838208', 'code_1599693072671838208', '多选测试', '', 6, '', '{"selectOption":[],"direction":0}', 1, 0, 1, 1, 1, 1, null, null, 0, null, 1, 1, 0, null, 1123598813738675201, '2022-12-05 17:12:04.000000', 1123598821738675201, '2022-12-05 17:12:04.000000', 0, 0); -- 数据权限 INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1599960953099784206, 1599950099730957314, 'custom_template.detail', '自定义配置模板详情', '/blade-system/custom-template/get/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-12-06 11:09:10', 1123598821738675201, '2022-12-06 11:09:10', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1599960953099784207, 1599950099730957315, 'custom_template.insert', '自定义配置模板新增', '/blade-system/custom-template/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-12-06 11:09:10', 1123598821738675201, '2022-12-06 11:09:10', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1599960953099784208, 1599950099730957316, 'custom_template.update', '自定义配置模板修改', '/blade-system/custom-template/update', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-12-06 11:09:10', 1123598821738675201, '2022-12-06 11:09:10', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1599960953099784209, 1599950099730957317, 'custom_template.remove', '自定义配置模板删除', '/blade-system/custom-template/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-12-06 11:09:10', 1123598821738675201, '2022-12-06 11:09:10', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1599960953099784210, 1599950099730957318, 'custom_template.field.detail', '自定义配置字段详情', '/blade-system/custom-template-field/get/*', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-12-06 11:09:10', 1123598821738675201, '2022-12-06 11:09:10', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1599960953099784211, 1599950099730957318, 'custom_template.field.list', '自定义配置字段列表', '/blade-system/custom-template-field/list', NULL, NULL, 'GET', 1123598821738675201, 1123598813738675201, '2022-12-06 11:09:10', 1123598821738675201, '2022-12-06 11:09:10', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1599960953099784212, 1599950099730957319, 'custom_template.field.insert', '自定义配置字段新增', '/blade-system/custom-template-field/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-12-06 11:09:10', 1123598821738675201, '2022-12-06 11:09:10', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1599960953099784213, 1599950099730957320, 'custom_template.field.update', '自定义配置字段编辑', '/blade-system/custom-template-field/update', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2022-12-06 11:09:10', 1123598821738675201, '2022-12-06 11:09:10', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1599960953099784214, 1599950099730957321, 'custom_template.field.remove', '自定义配置字段删除', '/blade-system/custom-template-field/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-12-06 11:09:10', 1123598821738675201, '2022-12-06 11:09:10', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1599960953099784215, 1599950099730957322, 'custom_template.relation.insert', '自定义配置关联提交', '/blade-system/custom-template-field-relation/insert', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-12-06 11:09:10', 1123598821738675201, '2022-12-06 11:09:10', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1599960953099784216, 1599950099730957323, 'custom_template.relation.remove', '自定义配置关联删除', '/blade-system/custom-template-field-relation/remove', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2022-12-06 11:09:10', 1123598821738675201, '2022-12-06 11:09:10', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1599960953099784217, 1599950099730957324, 'custom_template.relation.sort', '自定义配置关联排序', '/blade-system/custom-template-field-relation/sort', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-12-06 11:09:10', 1123598821738675201, '2022-12-06 11:09:10', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1599960953099784220, 1522823470509395969, 'product.query.field.update', '产品页查询条件变更', '/blade-system/custom-template-field-relation/submitConditionFields', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-12-06 11:09:10', 1123598821738675201, '2022-12-06 11:09:10', 1, 0); INSERT INTO blade_scope_api (id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1599960953099784221, 1529443896117899265, 'product.import.field.update', '产品页导入字段变更', '/blade-system/custom-template-field-relation/submitImportFields', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-12-06 11:09:10', 1123598821738675201, '2022-12-06 11:09:10', 1, 0); insert into "blade_scope_api" ("id", "menu_id", "resource_code", "scope_name", "scope_path", "scope_type", "remark", "http_method", "create_user", "create_dept", "create_time", "update_user", "update_time", "status", "is_deleted") values (1602139653947580417, 1529368696349208577, 'maintain_item.export_maintain_item', '导出', '/blade-cps/maintain-item/export', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2022-12-12 11:13:54', 1123598821738675201, '2022-12-12 11:13:54', 1, 0); -- NG原因维护树接口权限 INSERT INTO blade_scope_api(id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1610548774870896641, 1529366814360809473, 'common_group.insert', '新增', '/blade-cps/group', NULL, NULL, 'POST', 1123598821738675201, 1123598813738675201, '2023-01-04 16:08:45', 1123598821738675201, '2023-01-04 16:08:45', 1, 0); INSERT INTO blade_scope_api(id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1610548810656698369, 1529366921986650113, 'common_group.update', '修改', '/blade-cps/group', NULL, NULL, 'PUT', 1123598821738675201, 1123598813738675201, '2023-01-04 16:08:54', 1123598821738675201, '2023-01-04 16:08:54', 1, 0); INSERT INTO blade_scope_api(id, menu_id, resource_code, scope_name, scope_path, scope_type, remark, http_method, create_user, create_dept, create_time, update_user, update_time, status, is_deleted) VALUES (1610548932014690305, 1529367039523631106, 'common_group.delete_group', '删除组后将子移动到默认组', '/blade-cps/group/deleteGroup', NULL, NULL, 'DELETE', 1123598821738675201, 1123598813738675201, '2023-01-04 16:09:23', 1123598821738675201, '2023-01-04 16:09:23', 1, 0);